Merge branch 'quote-args-in-debug-logs' into 'master'

Quote arguments where needs be, in debug logs

See merge request kalilinux/build-scripts/live-build-config!37
merge-requests/18/merge
g0t mi1k 1 year ago
commit 5faa0da23a

@ -94,7 +94,11 @@ failure() {
run_and_log() {
if [ -n "$VERBOSE" ] || [ -n "$DEBUG" ]; then
echo "RUNNING: $@" >&2
printf "RUNNING:" >&2
for _ in "$@"; do
[[ $_ =~ [[:space:]] ]] && printf " '%s'" "$_" || printf " %s" "$_"
done >&2
printf "\n" >&2
"$@" 2>&1 | tee -a "$BUILD_LOG"
else
"$@" >>"$BUILD_LOG" 2>&1

Loading…
Cancel
Save