Skip to content

Commit

Permalink
Merge pull request #148 from FIUS/fix/scriptBug
Browse files Browse the repository at this point in the history
Fix small syntax error in versionBump script
  • Loading branch information
neumantm authored May 4, 2020
2 parents 1e5a613 + 8f6fb78 commit 1ab341a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scriptsAndTools/versionBump.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ fi

git fetch

if ! [ git diff HEAD FETCH_HEAD --exit-code > /dev/null ] ;then
if ! git diff HEAD FETCH_HEAD --exit-code > /dev/null ;then
fail "Branch is not up to date." 9
fi

Expand Down

0 comments on commit 1ab341a

Please sign in to comment.