Skip to content
This repository has been archived by the owner on Oct 2, 2024. It is now read-only.

Commit

Permalink
Fixed grep syntax to pass test checks
Browse files Browse the repository at this point in the history
  • Loading branch information
alstar555 committed Sep 12, 2024
1 parent 8002196 commit 847020e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/ch-convert
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ cv_dir_squash () {
# experiments.
# shellcheck disable=SC2086
q=
if mksquashfs --help 2>&1 | egrep -q '^-quiet'; then
if mksquashfs --help 2>&1 | grep -qE '^-quiet'; then
q=-quiet
fi
quiet mksquashfs "$1" "$2" $squash_xattr_arg -b 65536 -noappend -all-root \
Expand Down

0 comments on commit 847020e

Please sign in to comment.