diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2011-01-06 10:28:10 +0100 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2011-01-06 10:28:10 +0100 |
commit | 14ba11dcdfc8f4e9c14b8d48a8e8009960079c4b (patch) | |
tree | 4b93e6069161efab447e648d6fbef771847884b6 | |
parent | be5505a54a6a4dfdb0ae63d96df7c85c8af4421a (diff) | |
download | devtools32-14ba11dcdfc8f4e9c14b8d48a8e8009960079c4b.tar.xz |
mkarchroot: pass inline shell script to chroot0.9.16
-rwxr-xr-x | mkarchroot | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -34,7 +34,7 @@ usage() { while getopts 'r:ufnhC:M:c:' arg; do case "${arg}" in r) RUN="$OPTARG" ;; - u) RUN='pacman -Syu --noconfirm; pacman -Qqu >/dev/null && pacman -Su --noconfirm' ;; + u) RUN='/bin/sh -c "pacman -Syu --noconfirm; pacman -Qqu >/dev/null && pacman -Su --noconfirm"' ;; f) FORCE='y' ;; C) pac_conf="$OPTARG" ;; M) makepkg_conf="$OPTARG" ;; @@ -157,7 +157,7 @@ if [ "$RUN" != "" ]; then chroot_mount copy_hostconf - chroot "${working_dir}" ${RUN} + eval chroot "${working_dir}" ${RUN} # }}} else |