diff options
| author | practicalswift <[email protected]> | 2018-06-13 16:50:48 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2018-06-14 15:27:52 +0200 |
| commit | 3352da8da1243c03fc83ba678d2f5d193bd5a0c2 (patch) | |
| tree | 6985354b06d98d4d77d1a0c5a6690bddcc5af83e /test/lint/lint-python-shebang.sh | |
| parent | Merge #13393: Enable double-SHA256-for-64-byte code on 32-bit x86 (diff) | |
| download | discoin-3352da8da1243c03fc83ba678d2f5d193bd5a0c2.tar.xz discoin-3352da8da1243c03fc83ba678d2f5d193bd5a0c2.zip | |
Add "export LC_ALL=C" to all shell scripts
Diffstat (limited to 'test/lint/lint-python-shebang.sh')
| -rwxr-xr-x | test/lint/lint-python-shebang.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/lint/lint-python-shebang.sh b/test/lint/lint-python-shebang.sh index f5c5971c0..031487a91 100755 --- a/test/lint/lint-python-shebang.sh +++ b/test/lint/lint-python-shebang.sh @@ -1,5 +1,7 @@ #!/bin/bash # Shebang must use python3 (not python or python2) + +export LC_ALL=C EXIT_CODE=0 for PYTHON_FILE in $(git ls-files -- "*.py"); do if [[ $(head -c 2 "${PYTHON_FILE}") == "#!" && |