Skip to content

Commit 917310b

Browse files
committed
fix: quote variable substitution
To prevent issues with spaces in the variable. The var should be a single word but it pays to be careful. Courtesy of https://www.shellcheck.net/
1 parent 03f6817 commit 917310b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/Docker/roundup_start

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -120,11 +120,11 @@ for tracker_spec in "$@"; do
120120
exec roundup-demo \
121121
-B 0.0.0.0 \
122122
-p 8080 \
123-
-b $backend \
124-
--urlport $PORT_8080 \
125-
-t $template \
123+
-b "$backend" \
124+
--urlport "$PORT_8080" \
125+
-t "$template" \
126126
tracker/demo \
127-
$nuke
127+
"$nuke"
128128
fi
129129
;;
130130
shell)

0 commit comments

Comments
 (0)