Skip to content

Commit 751ca0d

Browse files
authored
Update sort command to be case-insensitive
1 parent 89e9b7c commit 751ca0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/format.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ done
3232
SPELLING_ALLOW_FILE=".github/actions/spelling/allow.txt"
3333
if [ -f "$SPELLING_ALLOW_FILE" ]; then
3434
echo "Sorting and de-duplicating $SPELLING_ALLOW_FILE"
35-
sort -u "$SPELLING_ALLOW_FILE" -o "$SPELLING_ALLOW_FILE"
35+
sort -fu "$SPELLING_ALLOW_FILE" -o "$SPELLING_ALLOW_FILE"
3636
fi
3737

3838
CHANGED_FILES=""

0 commit comments

Comments
 (0)