We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26cc369 commit 3dff483Copy full SHA for 3dff483
.github/workflows/build_release_assets.yml
@@ -249,9 +249,6 @@ jobs:
249
scripts/chocolatey/pack $windows_zip packages
250
cd packages
251
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
255
256
- name: Override base Docker image used for functional tests on Windows
257
if: matrix.os == 'windows-2022'
scripts/chocolatey/pack
@@ -1,6 +1,9 @@
1
#!/usr/bin/env bash
2
set -euo pipefail
3
4
+# otherwise grep -P in pack chocolatey/pack script fails on Windows
5
+export LC_ALL=en_US.utf8
6
+
7
# parse command line arguments
8
zip_name=$1
9
output_dir=$2
0 commit comments