Skip to content

Commit

Permalink
Fix: show 'egrep' instead of 'grep' when egrep is missing
Browse files Browse the repository at this point in the history
  • Loading branch information
mboelen committed Jul 20, 2021
1 parent 6755ac4 commit 3a03af4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/binaries
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 3a03af4

Please sign in to comment.