Fixed GIT check in build script.

This commit is contained in:
Christian P. MOMON 2018-01-08 00:19:19 +01:00
parent 297899e23c
commit 7989b4845d
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ function build_tagandpush
# Git check.
gitCheck=`which git 2>&1`
if [[ "$gitCheck" =~ ^.*\ 1.8 ]]; then
if [[ "$gitCheck" =~ ^/.* ]]; then
echo "GIT requirement................ OK"
let "okCount+=1"
else