mirror of
https://github.com/limine-bootloader/limine
synced 2025-01-06 04:42:16 +03:00
build: Prevent gensyms.sh from failing if pipefail is not supported by the shell
This commit is contained in:
parent
db561393dd
commit
af28eee1bc
@ -1,7 +1,8 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
set -o pipefail || true
|
||||
|
||||
./test_pipefail.sh && set -o pipefail
|
||||
|
||||
TMP1=$(mktemp)
|
||||
TMP2=$(mktemp)
|
||||
|
5
stage23/test_pipefail.sh
Executable file
5
stage23/test_pipefail.sh
Executable file
@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
set -o pipefail 2>/dev/null
|
Loading…
Reference in New Issue
Block a user