Skip to content

Commit 8eec516

Browse files
committed
fix: do not quote nuke arg
Quoting the nuke arg when nuke was missing resulted in an empty trailing argument passed to roundup-demo that was interpreted as a position argument to set the database type. $nuke is exactly the word nuke so no need to quote it as though it could contain multiple space separated tokens.
1 parent 8772415 commit 8eec516

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/Docker/roundup_start

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ for tracker_spec in "$@"; do
129129
--urlport "$PORT_8080" \
130130
-t "$template" \
131131
tracker/demo \
132-
"$nuke"
132+
$nuke
133133
fi
134134
;;
135135
shell)

0 commit comments

Comments
 (0)