From 43e40b2e461c4bcf569d3dca43276247e45f1af9 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Tue, 18 Jun 2024 18:03:59 +0200 Subject: [PATCH] switch find to fd calls --- usr/bin/archboot-testsuite.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/bin/archboot-testsuite.sh b/usr/bin/archboot-testsuite.sh index 1fd0921c3..44ded8868 100755 --- a/usr/bin/archboot-testsuite.sh +++ b/usr/bin/archboot-testsuite.sh @@ -94,7 +94,7 @@ _result license-error.txt echo -e "Starting none tracked files in \e[1m10\e[m seconds... \e[1;92mCTRL-C\e[m to stop now." read -r -t 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' . /usr/lib); do +for i in $(fd -u -E '/modules/' -E '/udev/' -E 'gconv-modules.cache' . /usr/lib); do pacman -Qo ${i} &>${_NO_LOG} || echo ${i} >> pacman-error.log done _result pacman-error.log