Skip to content

Commit

Permalink
Merge pull request #497 from dickschoeller/457-fix-merge-in-release-s…
Browse files Browse the repository at this point in the history
…cript

Fixes #457 - merge process in release script
  • Loading branch information
dickschoeller authored Aug 10, 2017
2 parents 6872466 + f019eff commit 7f18b07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ echo "New development version will be $new_development_version"
# Merge to master
git checkout master
git pull
git merge --squash development
git merge --strategy-option=theirs development

# Fix the version numbers in files.
sed -i -e "s/$development_version/$release_version/" pom.xml */pom.xml
Expand Down Expand Up @@ -56,7 +56,7 @@ git push
# Merge back to development
git checkout development
##### this next step doesn't work ####
git merge --squash master
git merge --strategy-option=theirs master

# Fix up the pom files.
sed -i -e "s/$release_version/$new_development_version/" pom.xml */pom.xml
Expand Down

0 comments on commit 7f18b07

Please sign in to comment.