소스 검색

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.
thislooksfun 3 년 전
부모
커밋
170e956c80
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Meta/check-ak-test-files.sh

+ 1 - 1
Meta/check-ak-test-files.sh

@@ -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