Browse Source

use grep -i

Waldemar Brodkorb 8 years ago
parent
commit
8f2c47bea8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/prereq.sh

+ 1 - 1
scripts/prereq.sh

@@ -207,7 +207,7 @@ printf " --->  checking if bash is installed.. "
 if which bash >/dev/null; then
   printf "found\n"
   printf " --->  checking if it is bash 4.x.. "
-  bash --version 2>/dev/null| grep "Version 4" >/dev/null
+  bash --version 2>/dev/null| grep -i "Version 4" >/dev/null
   if [ $? -eq 0 ]; then
     printf "yes\n"
   else