Mercurial > p > roundup > code
comparison scripts/Docker/roundup_start @ 7706:ccb5169ee6ee
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.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Tue, 21 Nov 2023 23:25:40 -0500 |
| parents | 095f379bf639 |
| children | 36c3acb4b49b |
comparison
equal
deleted
inserted
replaced
| 7705:29ef4b69f18c | 7706:ccb5169ee6ee |
|---|---|
| 127 -p 8080 \ | 127 -p 8080 \ |
| 128 -b "$backend" \ | 128 -b "$backend" \ |
| 129 --urlport "$PORT_8080" \ | 129 --urlport "$PORT_8080" \ |
| 130 -t "$template" \ | 130 -t "$template" \ |
| 131 tracker/demo \ | 131 tracker/demo \ |
| 132 "$nuke" | 132 $nuke |
| 133 fi | 133 fi |
| 134 ;; | 134 ;; |
| 135 shell) | 135 shell) |
| 136 if [ "$might_be_interactive" = "false" ]; then | 136 if [ "$might_be_interactive" = "false" ]; then |
| 137 printf \ | 137 printf \ |
