diff options
author | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2020-01-14 10:10:13 +0000 |
---|---|---|
committer | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2020-01-14 10:10:13 +0000 |
commit | 99983140592addd7f69accc615a8392777158bca (patch) | |
tree | f726bdef868712441fe65463bd186e242031d92e | |
parent | 50232e8aa98566c4e3b049807f6d23224531492c (diff) | |
download | cpt-99983140592addd7f69accc615a8392777158bca.tar.gz |
kiss: Ensure grep is always set
FossilOrigin-Name: 221712bef03ddc2c1d3e0a617aa7e2c1129606c2426f2cde78bc2c7e4537aa7c
-rwxr-xr-x | kiss | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. |