mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:07:45 +00: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:
parent
c2d44209a8
commit
170e956c80
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ while IFS= read -r FILENAME; do
|
||||||
MISSING_FILES=y
|
MISSING_FILES=y
|
||||||
fi
|
fi
|
||||||
done < <(
|
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
|
if [ "n" != "${MISSING_FILES}" ] ; then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue