commit 86f0a723b19eaf20583ea9f36132ccf71feabc37
parent c8de8500f4c11582895a26d88c6e931751eecc96
Author: Dylan Araps <dylan.araps@gmail.com>
Date: Thu, 16 Jan 2020 00:55:07 +0200
kiss: Stop being overprotective with grep
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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.