From 486b21660be2fe899a9d04ee0cdccecbb63847e6 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Thu, 18 Jul 2024 11:46:31 +0200 Subject: [PATCH] log to tty11 to see progress --- usr/bin/archboot-testsuite.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/bin/archboot-testsuite.sh b/usr/bin/archboot-testsuite.sh index ec5f62fd6..d46b4e212 100755 --- a/usr/bin/archboot-testsuite.sh +++ b/usr/bin/archboot-testsuite.sh @@ -2,7 +2,7 @@ # SPDX-License-Identifier: GPL-3.0-or-later # created by Tobias Powalowski . /usr/lib/archboot/common.sh -_LOG="testsuite.log" +_LOG="/dev/tty11" _APPNAME=${0##*/} _LOOP="/dev/loop0" _IMG="/test.img" @@ -163,7 +163,7 @@ sleep 10 _run_test "none tracked files in /usr/lib... this takes a while" for i in $(fd -u -E '/modules/' -E '/udev/' -E 'gconv-modules.cache' -E 'locale-archive' . /usr/lib); do #shellcheck disable=SC2086 - pacman -Qo ${i} &>${_NO_LOG} || echo ${i} >> pacman-error.log + pacman -Qo ${i} &>"${_NO_LOG}" || echo ${i} >> pacman-error.log done _result pacman-error.log echo -e "Starting pacman database check in \e[1m10\e[m seconds... \e[1;92mCTRL-C\e[m to stop now."