aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2018-06-18 08:32:53 -0400
committerMarcoFalke <falke.marco@gmail.com>2018-06-18 08:32:56 -0400
commitd67eff8002d7e14169a01b5dabcc998e98642639 (patch)
treee35e7b26678e175fbf935d0e17fec1ab2941d501
parent45c00f841612bc1ca8718d580e96911fe48ffd96 (diff)
parent7b23e6e13f042aa06741dbb7127eb291a61752a7 (diff)
downloadbitcoin-d67eff8002d7e14169a01b5dabcc998e98642639.tar.xz
Merge #13494: Follow-up to #13454: Fix broken build by exporting LC_ALL=C
7b23e6e13f Follow-up to #13454: Fix broken build by exporting LC_ALL=C (practicalswift) Pull request description: Follow-up to #13454: Fix broken build by exporting `LC_ALL=C`. Tree-SHA512: 5cca3182ba034dce28a0df5f4a4b343de6c2526048f17fee30e2f8d946e976b39d9cc54faae6c31bfe89022f9f4c360e9ec8e163a1690bc0656410a48bb81dbf
-rwxr-xr-xtest/lint/lint-python-utf8-encoding.sh1
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