fix: dash does not support pipefail
This commit is contained in:
parent
d97d384ea5
commit
e2c8cc3449
|
@ -1,8 +1,13 @@
|
|||
#!/bin/sh
|
||||
|
||||
# works best on busybox sh
|
||||
|
||||
set -efux -o pipefail
|
||||
## dash does not support pipefail
|
||||
# this does not work in `dash script.sh`
|
||||
DASH=$(readlink -f "/bin/sh" | grep "dash" || [ $? = 1 ])
|
||||
if [ -n "$DASH" ]; then
|
||||
set -efx
|
||||
else
|
||||
set -efx -o pipefail
|
||||
fi
|
||||
|
||||
|
||||
## Use GNU grep, busybox grep is too slow
|
||||
|
|
Loading…
Reference in New Issue