Skip to content

Commit

Permalink
Change how we detect if git flow is init.
Browse files Browse the repository at this point in the history
  • Loading branch information
bmarty committed Jul 20, 2023
1 parent 3e2a516 commit b98d57c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/release/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b98d57c

Please sign in to comment.