From 3c6e95c6bbe8bef15ffedaffd229b0d2ef21e9a2 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Tue, 22 Feb 2022 07:00:53 +0100 Subject: [PATCH] show no errors on aarch64 container creation on x86_64 hardware --- usr/bin/archboot-aarch64-create-container.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/bin/archboot-aarch64-create-container.sh b/usr/bin/archboot-aarch64-create-container.sh index 26c8de952..bc8513fd1 100755 --- a/usr/bin/archboot-aarch64-create-container.sh +++ b/usr/bin/archboot-aarch64-create-container.sh @@ -18,7 +18,7 @@ if [[ "${_RUNNING_ARCH}" == "aarch64" ]]; then _umount_special "${1}" || exit 1 _generate_locales "${1}" || exit 1 _clean_locale "${1}" - _clean_container "${1}" >/dev/null 2>&1 + _clean_container "${1}" _clean_archboot_cache _generate_keyring "${1}" || exit 1 _copy_mirrorlist_and_pacman_conf "${1}" @@ -34,7 +34,7 @@ if [[ "${_RUNNING_ARCH}" == "x86_64" ]]; then _clean_cache "${1}" || exit 1 _generate_locales "${1}" || exit 1 _clean_locale "${1}" - _clean_container "${1}" + _clean_container "${1}" >/dev/null 2>&1 fi _reproducibility "${1}" _set_hostname "${1}" || exit 1