Fix shellcheck warnings for literal { and } characters in launch.script

Closes gh-7870
This commit is contained in:
Andy Wilkinson 2017-01-04 21:30:42 +00:00
parent 75cb545361
commit c5e7d83e2d

View File

@ -74,7 +74,7 @@ fi
[[ -z "$LOG_FILENAME" ]] && LOG_FILENAME="{{logFilename:${identity}.log}}"
# Initialize stop wait time if not provided by the config file
[[ -z "$STOP_WAIT_TIME" ]] && STOP_WAIT_TIME={{stopWaitTime:60}}
[[ -z "$STOP_WAIT_TIME" ]] && STOP_WAIT_TIME="{{stopWaitTime:60}}"
# ANSI Colors
echoRed() { echo $'\e[0;31m'"$1"$'\e[0m'; }