fix var declaration
This commit is contained in:
parent
604d3da07d
commit
35ce452dec
@ -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
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
|
Loading…
Reference in New Issue
Block a user