Skip to content

Commit 3dff483

Browse files
committed
chore: move env var in pack script
1 parent 26cc369 commit 3dff483

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build_release_assets.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -249,9 +249,6 @@ jobs:
249249
scripts/chocolatey/pack $windows_zip packages
250250
cd packages
251251
choco install ggshield --debug --verbose --source . --noop
252-
env:
253-
# otherwise grep -P in pack chocolatey/pack script fails on Windows
254-
LC_ALL: en_US.utf8
255252
256253
- name: Override base Docker image used for functional tests on Windows
257254
if: matrix.os == 'windows-2022'

scripts/chocolatey/pack

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#!/usr/bin/env bash
22
set -euo pipefail
33

4+
# otherwise grep -P in pack chocolatey/pack script fails on Windows
5+
export LC_ALL=en_US.utf8
6+
47
# parse command line arguments
58
zip_name=$1
69
output_dir=$2

0 commit comments

Comments
 (0)