Skip to content

Commit 05d34cc

Browse files
committed
ci: set LC_ALL in shell scripts
1 parent e606fd8 commit 05d34cc

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

ci/scripts/bitcoin_core_ci.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/env bash
22

3+
export LC_ALL=C
4+
35
set -o errexit -o nounset -o pipefail -o xtrace
46

57
readonly SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)"

ci/scripts/ci_helpers.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/env bash
22

3+
export LC_ALL=C
4+
35
set -o errexit -o nounset -o pipefail -o xtrace
46

57
write_env_var() {

ci/scripts/config.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
#
77
# Source CI configuration and output variables needed by the workflow.
88

9+
export LC_ALL=C
10+
911
set -o errexit -o nounset -o pipefail -o xtrace
1012

1113
readonly SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)"

0 commit comments

Comments
 (0)