mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-12 01:47:00 +02:00
Meta: Remove unnecessary -i
Using `xargs -i <cmd> {}` is just doing the default behavior of xargs,
but with extra steps that also don't work on macOS.
This commit is contained in:
committed by
Andreas Kling
parent
c2d44209a8
commit
170e956c80
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user