From 170e956c80ebcfbb2ed3bedfb5cee2b53192efba Mon Sep 17 00:00:00 2001 From: thislooksfun Date: Tue, 26 Oct 2021 13:11:24 -0500 Subject: [PATCH] Meta: Remove unnecessary -i Using `xargs -i {}` is just doing the default behavior of xargs, but with extra steps that also don't work on macOS. --- Meta/check-ak-test-files.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meta/check-ak-test-files.sh b/Meta/check-ak-test-files.sh index d929eb146f..1a4b1b262a 100755 --- a/Meta/check-ak-test-files.sh +++ b/Meta/check-ak-test-files.sh @@ -14,7 +14,7 @@ while IFS= read -r FILENAME; do MISSING_FILES=y fi done < <( - git ls-files 'Tests/AK/Test*.cpp' | xargs -i basename {} + git ls-files 'Tests/AK/Test*.cpp' | xargs basename ) if [ "n" != "${MISSING_FILES}" ] ; then