Change how we detect if git flow is init.
This commit is contained in:
parent
1bc80a526c
commit
aa26959748
1 changed files with 2 additions and 2 deletions
|
|
@ -80,8 +80,8 @@ if [[ ! -d ${buildToolsPath} ]]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Check if git flow is enabled
|
# Check if git flow is enabled
|
||||||
git flow config >/dev/null 2>&1
|
gitFlowDevelop=`git config gitflow.branch.develop`
|
||||||
if [[ $? == 0 ]]
|
if [[ ${gitFlowDevelop} != "" ]]
|
||||||
then
|
then
|
||||||
printf "Git flow is initialized\n"
|
printf "Git flow is initialized\n"
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue