diff options
author | Daniel Baumann <daniel@debian.org> | 2009-06-15 11:57:22 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:09:45 +0100 |
commit | c17aa70a7fb8c99014f104505fceec1f31bf9729 (patch) | |
tree | ae7af40af84cf4dc3dc42daea2dac19dd5b5523f | |
parent | 90d2aa0a2b26d77867250d6b1031e7c7e3a2b3e5 (diff) | |
download | vyos-live-build-c17aa70a7fb8c99014f104505fceec1f31bf9729.tar.gz vyos-live-build-c17aa70a7fb8c99014f104505fceec1f31bf9729.zip |
Preserve quoting in lh when passing through to sub commands (Closes: #521824).
-rwxr-xr-x | helpers/lh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helpers/lh b/helpers/lh index 70dc6b9c7..1288f3e0c 100755 --- a/helpers/lh +++ b/helpers/lh @@ -36,7 +36,7 @@ case "${1}" in if [ -x "$(which lh_${COMMAND} 2>/dev/null)" ] then - exec lh_"${COMMAND}" ${@} + exec lh_"${COMMAND}" "${@}" else Echo_error "no such helper" exit 1 |