From e4cb45705aefd9c62443f05d4462b9308a9624f7 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Wed, 6 Sep 2023 14:40:18 +0200 Subject: [PATCH] simplify pacman --- usr/lib/archboot/installer/pacman.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/archboot/installer/pacman.sh b/usr/lib/archboot/installer/pacman.sh index 142ab237a..bfa6a5a6c 100644 --- a/usr/lib/archboot/installer/pacman.sh +++ b/usr/lib/archboot/installer/pacman.sh @@ -5,7 +5,7 @@ _pacman() { #shellcheck disable=SC2086,SC2069 - ${_PACMAN} -Sy ${_PACKAGES} >"${_LOG}" && : > /.pacman-success + ${_PACMAN} -Sy ${_PACKAGES} &>"${_LOG}" && : > /.pacman-success rm /.archboot }