fix: dash does not support pipefail
This commit is contained in:
parent
4b6e01c7d6
commit
aa48d9aea0
|
@ -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