fix: use GNU grep instead of busybox

This commit is contained in:
Ming Di Leom 2022-01-13 06:06:43 +00:00
parent 9e2b591494
commit 15338af949
No known key found for this signature in database
GPG Key ID: 32D3E28E96A695E8
1 changed files with 14 additions and 0 deletions

View File

@ -4,6 +4,20 @@
set -efux -o pipefail set -efux -o pipefail
## Use GNU grep, busybox grep is too slow
. "/etc/os-release"
DISTRO="$ID"
if [ -z "$(grep --help | grep 'GNU')" ]; then
if [ "$DISTRO" = "alpine" ]; then
echo "Please install GNU grep 'apk add grep'"
exit 1
fi
alias grep="/usr/bin/grep"
fi
mkdir -p "tmp/" mkdir -p "tmp/"
cd "tmp/" cd "tmp/"