fix var declaration

This commit is contained in:
Asif Bacchus 2020-05-06 22:30:03 -06:00
parent 604d3da07d
commit 35ce452dec
1 changed files with 2 additions and 2 deletions

View File

@ -302,14 +302,14 @@ while [ $# -gt 0 ]; do
if [ -z "$2" ]; then if [ -z "$2" ]; then
badParam empty "$@" badParam empty "$@"
else else
dockerStartTimeout = "$2" dockerStartTimeout="$2"
fi fi
;; ;;
-t2|--timeout-stop) -t2|--timeout-stop)
if [ -z "$2" ]; then if [ -z "$2" ]; then
badParam empty "$@" badParam empty "$@"
else else
dockerStopTimeout = "$2" dockerStopTimeout="$2"
fi fi
;; ;;
*) *)