Skip to content

Commit 393a2d8

Browse files
committed
GH/scripts/environment.sh: expect pipefail avail
Expect that the shell implements pipefail - as the environment.sh is run (sourced) always by bash (implicit CI shell for Linux/macOS and C:\shells\msys2bash.cmd set explictly in Windows). this changes c1cfe73 (from today)
1 parent fa3f5f6 commit 393a2d8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/scripts/environment.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
## password $KEY_FILE_PASS)
1111

1212
set -eu
13-
set -o pipefail || true
13+
set -o pipefail
1414

1515
if expr "$GITHUB_REF" : 'refs/tags/' >/dev/null; then
1616
TAG=${GITHUB_REF#refs/tags/}

0 commit comments

Comments
 (0)