diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2018-06-18 14:20:18 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2018-06-18 14:20:18 +0200 |
commit | 7b23e6e13f042aa06741dbb7127eb291a61752a7 (patch) | |
tree | e35e7b26678e175fbf935d0e17fec1ab2941d501 /test/lint | |
parent | 45c00f841612bc1ca8718d580e96911fe48ffd96 (diff) |
Follow-up to #13454: Fix broken build by exporting LC_ALL=C
Diffstat (limited to 'test/lint')
-rwxr-xr-x | test/lint/lint-python-utf8-encoding.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/lint/lint-python-utf8-encoding.sh b/test/lint/lint-python-utf8-encoding.sh index ce973e710a..d0ff38ea0a 100755 --- a/test/lint/lint-python-utf8-encoding.sh +++ b/test/lint/lint-python-utf8-encoding.sh @@ -7,6 +7,7 @@ # Make sure we explicitly open all text files using UTF-8 (or ASCII) encoding to # avoid potential issues on the BSDs where the locale is not always set. +export LC_ALL=C EXIT_CODE=0 OUTPUT=$(git grep " open(" -- "*.py" | grep -vE "encoding=.(ascii|utf8|utf-8)." | grep -vE "open\([^,]*, ['\"][^'\"]*b[^'\"]*['\"]") if [[ ${OUTPUT} != "" ]]; then |