Skip to content

Commit

Permalink
fix: expand alias in bash
Browse files Browse the repository at this point in the history
  • Loading branch information
Ming Di Leom committed Jun 3, 2024
1 parent 21816a4 commit d80cd36
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/script.sh
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
#!/bin/sh

## dash does not support 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
IS_DASH=$(readlink -f "/bin/sh" | grep "dash" || [ $? = 1 ])
if [ -n "$IS_DASH" ]; then
set -efx
else
set -efx -o pipefail
fi

# bash does not expand alias by default for non-interactive script
if [ -n "$BASH_VERSION" ]; then
shopt -s expand_aliases
fi


## Use GNU grep, busybox grep is not as performant
DISTRO=""
Expand Down

0 comments on commit d80cd36

Please sign in to comment.