Browse Source

Change how we detect if git flow is init.

pull/932/head
Benoit Marty 1 year ago
parent
commit
b98d57c9c8
  1. 4
      tools/release/release.sh

4
tools/release/release.sh

@ -80,8 +80,8 @@ if [[ ! -d ${buildToolsPath} ]]; then @@ -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

Loading…
Cancel
Save