Force locale in rustfmt shell scripts that rely on sort order

This commit is contained in:
Matt Corallo 2024-08-06 15:13:59 +00:00
parent 0079ca840a
commit 4c650b9830
2 changed files with 4 additions and 0 deletions

View File

@ -1,6 +1,8 @@
#!/bin/bash
set -eox pipefail
export LC_ALL=C
# Generate initial exclusion list
#find . -name '*.rs' -type f |sort >rustfmt_excluded_files

View File

@ -1,6 +1,8 @@
#!/bin/bash
set -eo pipefail
export LC_ALL=C
# Generate initial exclusion list
#find . -name '*.rs' -type f |sort >rustfmt_excluded_files