Skip to content

Commit

Permalink
Fixes #457 - merge process in release script
Browse files Browse the repository at this point in the history
  • Loading branch information
dickschoeller committed Aug 10, 2017
1 parent 6872466 commit f019eff
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 f019eff

Please sign in to comment.