kiss: Stop being overprotective with grep

This commit is contained in:
Dylan Araps 2020-01-16 00:55:07 +02:00
parent c8de8500f4
commit 86f0a723b1
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 1 additions and 1 deletions

2
kiss
View File

@ -1095,7 +1095,7 @@ main() {
# Prefer GNU grep if installed as it is much much faster than busybox's
# implementation. Very much worth it if you value performance over
# POSIX correctness.
grep=$(command -v ggrep 2>/dev/null) || grep='grep'; : "${grep:=grep}"
grep=$(command -v ggrep) || grep='grep'
# This allows for automatic setup of a KISS chroot and will
# do nothing on a normal system.