aboutsummaryrefslogtreecommitdiff
path: root/.github/ci/crlf.sh
diff options
context:
space:
mode:
authorVega Deftwing <[email protected]>2024-04-11 20:21:30 +0000
committerVega Deftwing <[email protected]>2024-04-11 20:21:30 +0000
commita3f8048877e658493b9147a122fab2c788463591 (patch)
tree31dfd40e2f895e4833af5a8faa62302a2c5eb62a /.github/ci/crlf.sh
parent80fadada7056516aa566033929a305b36f6b9be4 (diff)
Revert xargs changes
Diffstat (limited to '.github/ci/crlf.sh')
-rwxr-xr-x.github/ci/crlf.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/ci/crlf.sh b/.github/ci/crlf.sh
index ede17c861..69838ce88 100755
--- a/.github/ci/crlf.sh
+++ b/.github/ci/crlf.sh
@@ -4,7 +4,7 @@
4 4
5set -euo pipefail 5set -euo pipefail
6 6
7FILES_WITH_CRLF=$(find ! -path "./.git/*" -not -type d | xargs -0 file -N | (grep " CRLF " || true)) 7FILES_WITH_CRLF=$(find ! -path "./.git/*" -not -type d | xargs file -N | (grep " CRLF " || true))
8 8
9if [ -z "$FILES_WITH_CRLF" ]; then 9if [ -z "$FILES_WITH_CRLF" ]; then
10 echo -e "No files with CRLF endings found." 10 echo -e "No files with CRLF endings found."