diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-11-02 15:13:26 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-11-02 17:38:26 -0400 |
commit | a0d401113c774ef589bffaf7954ba1e41be09517 (patch) | |
tree | b409cbc17853bd8cc93f17eb68ccf79dfc8d9ae9 | |
parent | f53edae7f21b36f6e7f47af6c42fad35371c5622 (diff) |
createworkdir: clean up quoting
-rwxr-xr-x | src/abslibre-tools/createworkdir | 6 |
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 |