From 3a03af42aa0464f4fc54e8e99dee5115dc0ed77d Mon Sep 17 00:00:00 2001 From: Michael Boelen Date: Tue, 20 Jul 2021 11:31:18 +0200 Subject: [PATCH] Fix: show 'egrep' instead of 'grep' when egrep is missing --- include/binaries | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/binaries b/include/binaries index f5054c88..fb8147ce 100644 --- a/include/binaries +++ b/include/binaries @@ -340,7 +340,7 @@ [ "${AWKBINARY:-}" ] || ExitFatal "awk binary not found" [ "${CAT_BINARY:-}" ] || ExitFatal "cat binary not found" [ "${CUTBINARY:-}" ] || ExitFatal "cut binary not found" - [ "${EGREPBINARY:-}" ] || ExitFatal "grep binary not found" + [ "${EGREPBINARY:-}" ] || ExitFatal "egrep binary not found" [ "${FINDBINARY:-}" ] || ExitFatal "find binary not found" [ "${GREPBINARY:-}" ] || ExitFatal "grep binary not found" [ "${HEADBINARY:-}" ] || ExitFatal "head binary not found"