summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsrc/abslibre-tools/createworkdir6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/abslibre-tools/createworkdir b/src/abslibre-tools/createworkdir
index a251d40..1c553aa 100755
--- a/src/abslibre-tools/createworkdir
+++ b/src/abslibre-tools/createworkdir
@@ -39,13 +39,13 @@ mkdir -p "$WORKDIR/staging"
cmd=(libregit "$ABSLIBREGIT" master "$WORKDIR/abslibre")
if ! "${cmd[@]}"; then
error "Could not clone ABSLibre"
- print "Try running this command:"
+ plain "Try running this command:"
echo
- print '%s' "${cmd[*]}"
+ printf '%q ' "${cmd[@]}"
exit 1
fi
msg "Finished, your packaging directory tree looks like this now:"
-ls --color=always ${WORKDIR}/*/*
+ls --color=always "${WORKDIR}"/*/*
trap -- EXIT