# HG changeset patch # User John Rouillard # Date 1698198305 14400 # Node ID b8aef93178db57f21044533b65ee21ee4d7a07c2 # Parent 08e87030f3a2b79af5b495d729b04afdf43966a1 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/ diff -r 08e87030f3a2 -r b8aef93178db scripts/Docker/roundup_start --- a/scripts/Docker/roundup_start Tue Oct 24 21:42:56 2023 -0400 +++ b/scripts/Docker/roundup_start Tue Oct 24 21:45:05 2023 -0400 @@ -120,11 +120,11 @@ exec roundup-demo \ -B 0.0.0.0 \ -p 8080 \ - -b $backend \ - --urlport $PORT_8080 \ - -t $template \ + -b "$backend" \ + --urlport "$PORT_8080" \ + -t "$template" \ tracker/demo \ - $nuke + "$nuke" fi ;; shell)