Skip to content

Commit 935f4f5

Browse files
committed
busybox grep doesn't know -F as --fixed-strings
1 parent 1f2ed6e commit 935f4f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packaging/packager

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ function pluck_so_files() {
6161
}
6262

6363
function package_libc_alpine() {
64-
if grep --fixed-strings "Alpine Linux" < /etc/os-release > /dev/null; then
64+
if grep -F "Alpine Linux" < /etc/os-release > /dev/null; then
6565
if type apk > /dev/null 2>&1; then
6666
apk info --contents musl 2>/dev/null | pluck_so_files | sed 's/^/\//'
6767
fi

0 commit comments

Comments
 (0)