From 99983140592addd7f69accc615a8392777158bca Mon Sep 17 00:00:00 2001 From: "dylan.araps@gmail.com" Date: Tue, 14 Jan 2020 10:10:13 +0000 Subject: kiss: Ensure grep is always set FossilOrigin-Name: 221712bef03ddc2c1d3e0a617aa7e2c1129606c2426f2cde78bc2c7e4537aa7c --- kiss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kiss b/kiss index f817269..7de46b7 100755 --- a/kiss +++ b/kiss @@ -1091,7 +1091,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=$(command -v ggrep 2>/dev/null) || grep='grep'; : "${grep:=grep}" # This allows for automatic setup of a KISS chroot and will # do nothing on a normal system. -- cgit v1.2.3