You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/helpers.sh
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -207,6 +207,18 @@ function error_and_proceed() {
207
207
};
208
208
export -f error_and_proceed;
209
209
210
+
functioncheck_dependencies() {
211
+
if [[ $(uname)=='Darwin' ]] && [ $(which brew) ];then
212
+
if! [ $(which ggrep) ];then
213
+
log 'error''A metaphysical dichotomy has caused this unit to overload and shut down. GNU Grep is a requirement and your Mac does not have it. Consider "brew install grep"';
0 commit comments