Skip to content

Commit

Permalink
left off a space
Browse files Browse the repository at this point in the history
  • Loading branch information
Kris Stanton committed Aug 8, 2024
1 parent de63ba4 commit d089db5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ echo "TS_ENV is: $TS_ENV"
TSENV_VALUE=$(grep "^TS_ENV=" $DOTENV | cut -d '=' -f 2) # Examples: kris-sbx7894 or uat or prod
#
# If the TSENV_VALUE is blank, then set try setting it another way
if [-z "$TSENV_VALUE" ]; then
if [ -z "$TSENV_VALUE" ]; then
TSENV_VALUE=$TS_ENV
echo "TSENV_VALUE was blank, so set by TS_ENV. TSENV_VALUE is now set to: $TSENV_VALUE"
fi
#
# If the TSENV_VALUE is STILL blank, then set it to
if [-z "$TSENV_VALUE" ]; then
if [ -z "$TSENV_VALUE" ]; then
TSENV_VALUE="BLANK"
echo "TSENV_VALUE was STILL blank, so set by TS_ENV. TSENV_VALUE is now set to default of: $TSENV_VALUE"
fi
Expand Down

0 comments on commit d089db5

Please sign in to comment.