Change how we detect if git flow is init.

This commit is contained in:
Benoit Marty
2023-07-20 19:40:57 +02:00
parent 1bc80a526c
commit aa26959748

View File

@@ -80,8 +80,8 @@ if [[ ! -d ${buildToolsPath} ]]; then
fi
# Check if git flow is enabled
git flow config >/dev/null 2>&1
if [[ $? == 0 ]]
gitFlowDevelop=`git config gitflow.branch.develop`
if [[ ${gitFlowDevelop} != "" ]]
then
printf "Git flow is initialized\n"
else