forked from kiss-community/kiss
kiss: Ensure grep is always set
This commit is contained in:
parent
3c251759bb
commit
ab46222e56
2
kiss
2
kiss
@ -1091,7 +1091,7 @@ main() {
|
|||||||
# Prefer GNU grep if installed as it is much much faster than busybox's
|
# Prefer GNU grep if installed as it is much much faster than busybox's
|
||||||
# implementation. Very much worth it if you value performance over
|
# implementation. Very much worth it if you value performance over
|
||||||
# POSIX correctness.
|
# POSIX correctness.
|
||||||
grep=$(command -v ggrep 2>/dev/null) || grep='grep'
|
grep=$(command -v ggrep 2>/dev/null) || grep='grep'; : "${grep:=grep}"
|
||||||
|
|
||||||
# This allows for automatic setup of a KISS chroot and will
|
# This allows for automatic setup of a KISS chroot and will
|
||||||
# do nothing on a normal system.
|
# do nothing on a normal system.
|
||||||
|
Loading…
Reference in New Issue
Block a user