mirror of
https://git.datalinker.icu/comfyanonymous/ComfyUI
synced 2026-09-03 05:27:09 +08:00
Update check-line-endings.yml
This commit is contained in:
parent
56b12062c8
commit
b4903c762d
8
.github/workflows/check-line-endings.yml
vendored
8
.github/workflows/check-line-endings.yml
vendored
@ -18,22 +18,22 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
# Get the list of changed files in the PR
|
# Get the list of changed files in the PR
|
||||||
CHANGED_FILES=$(git diff --name-only origin/${{ github.base_ref }}..HEAD)
|
CHANGED_FILES=$(git diff --name-only origin/${{ github.base_ref }}..HEAD)
|
||||||
|
|
||||||
# Flag to track if CRLF is found
|
# Flag to track if CRLF is found
|
||||||
CRLF_FOUND=false
|
CRLF_FOUND=false
|
||||||
|
|
||||||
# Loop through each changed file
|
# Loop through each changed file
|
||||||
for FILE in $CHANGED_FILES; do
|
for FILE in $CHANGED_FILES; do
|
||||||
# Check if the file exists and is a text file
|
# Check if the file exists and is a text file
|
||||||
if [ -f "$FILE" ] && file "$FILE" | grep -q "text"; then
|
if [ -f "$FILE" ] && file "$FILE" | grep -q "text"; then
|
||||||
# Check for CRLF line endings
|
# Check for CRLF line endings
|
||||||
if grep -U $'\r\n' "$FILE"; then
|
if grep -UP '\r$' "$FILE"; then
|
||||||
echo "Error: Windows line endings (CRLF) detected in $FILE"
|
echo "Error: Windows line endings (CRLF) detected in $FILE"
|
||||||
CRLF_FOUND=true
|
CRLF_FOUND=true
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
# Exit with error if CRLF was found
|
# Exit with error if CRLF was found
|
||||||
if [ "$CRLF_FOUND" = true ]; then
|
if [ "$CRLF_FOUND" = true ]; then
|
||||||
exit 1
|
exit 1
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user