diff options
author | Daniel Baumann <daniel@debian.org> | 2008-02-24 15:19:41 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 18:36:08 +0100 |
commit | 3421a5b614394ad998b231bffeaaf4fab3fe3362 (patch) | |
tree | 497b9592e10b7f2d02fdf523e041773d3f7bac46 /functions/chroot.sh | |
parent | 004d01923948ec5695d9bd735f41204fa8bbe168 (diff) | |
download | vyos-live-build-3421a5b614394ad998b231bffeaaf4fab3fe3362.tar.gz vyos-live-build-3421a5b614394ad998b231bffeaaf4fab3fe3362.zip |
Fixing quoting with chroot wrapper calls.
Diffstat (limited to 'functions/chroot.sh')
-rwxr-xr-x | functions/chroot.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions/chroot.sh b/functions/chroot.sh index 17c5f3664..63151dbe1 100755 --- a/functions/chroot.sh +++ b/functions/chroot.sh @@ -11,7 +11,7 @@ set -e Chroot () { - COMMANDS="${1}" + COMMANDS="${@}" # Executing commands in chroot Echo_debug "Executing: ${COMMANDS}" |