diff options
Diffstat (limited to 'src/chroot-tools/librechroot')
-rwxr-xr-x | src/chroot-tools/librechroot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chroot-tools/librechroot b/src/chroot-tools/librechroot index 81163b0..4941b95 100755 --- a/src/chroot-tools/librechroot +++ b/src/chroot-tools/librechroot @@ -181,7 +181,7 @@ arch-nspawn() { if [[ -t 1 ]]; then cmd=("$@") else - cmd=(bash --noprofile --norc -c "$(printf '%q ' "$@") |&cat") + cmd=(bash --noprofile --norc -c "set -o pipefail; $(printf '%q ' "$@") |&cat") fi set +u # if an array is empty, it counts as unbound |