diff options
Diffstat (limited to 'archiso')
-rwxr-xr-x | archiso/mkarchiso | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archiso/mkarchiso b/archiso/mkarchiso index 6a2aeff..c7de1da 100755 --- a/archiso/mkarchiso +++ b/archiso/mkarchiso @@ -87,10 +87,10 @@ _pacman () { local ret if [ "${QUIET}" = "y" ]; then - mkarchroot -C "$PACCONFIG" -f "${work_dir}/root-image" $* 2>&1 >/dev/null + mkarchroot -n -C "$PACCONFIG" -f "${work_dir}/root-image" $* 2>&1 >/dev/null ret=$? else - mkarchroot -C "$PACCONFIG" -f "${work_dir}/root-image" $* + mkarchroot -n -C "$PACCONFIG" -f "${work_dir}/root-image" $* ret=$? fi |