aboutsummaryrefslogtreecommitdiff
path: root/kiss
diff options
context:
space:
mode:
authordylan.araps@gmail.com <dylan.araps@gmail.com>2020-01-15 22:55:06 +0000
committerdylan.araps@gmail.com <dylan.araps@gmail.com>2020-01-15 22:55:06 +0000
commit722009bd11acc6e68bd711719777ec08cdaa5cdd (patch)
treea6d3b38352b98cd713827f0b6a18eea2eb3afb46 /kiss
parent8fb8093b752aa2388558256972419a3978f2c291 (diff)
downloadcpt-722009bd11acc6e68bd711719777ec08cdaa5cdd.tar.gz
kiss: Stop being overprotective with grep
FossilOrigin-Name: 2ce683d47934669ca7f52bc69e3ac45a33609a688c581a08c80de0fd406ed7c3
Diffstat (limited to 'kiss')
-rwxr-xr-xkiss2
1 files changed, 1 insertions, 1 deletions
diff --git a/kiss b/kiss
index 39b1b86..287c48e 100755
--- a/kiss
+++ b/kiss
@@ -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.