We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87a4075 commit a0617d2Copy full SHA for a0617d2
scripts/Docker/roundup_start
@@ -78,11 +78,11 @@ for tracker_spec in "$@"; do
78
anydbm|sqlite)
79
backend="$arg";;
80
postgres|mysql)
81
- printf "demo mode only supports sqlite or anydbm backends, not $1. Exiting."
+ printf "demo mode only supports sqlite or anydbm backends, not %s. Exiting." "$1"
82
exit 1;;
83
nuke)
84
nuke="$arg";;
85
- *) printf "Unknown argument $1.\n"
+ *) printf "Unknown argument %s.\n" "$1"
86
printf "Usage: demo [template] [db]\n"
87
printf " template: one of "
88
printf "classic devel jinja2 minimal responsive\n"
0 commit comments