Commit c5e7d83e authored by Andy Wilkinson's avatar Andy Wilkinson

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

Closes gh-7870
parent 75cb5453
...@@ -74,7 +74,7 @@ fi ...@@ -74,7 +74,7 @@ fi
[[ -z "$LOG_FILENAME" ]] && LOG_FILENAME="{{logFilename:${identity}.log}}" [[ -z "$LOG_FILENAME" ]] && LOG_FILENAME="{{logFilename:${identity}.log}}"
# Initialize stop wait time if not provided by the config file # 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 # ANSI Colors
echoRed() { echo $'\e[0;31m'"$1"$'\e[0m'; } echoRed() { echo $'\e[0;31m'"$1"$'\e[0m'; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment