Skip to content

Commit

Permalink
Merge pull request #97 from thueske/master
Browse files Browse the repository at this point in the history
Fix build script
  • Loading branch information
pstranghoener authored Aug 20, 2018
2 parents 7c5963c + fcfd800 commit 22058b8
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions build-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,12 @@ git fetch
git reset --hard origin/master

git checkout -b "release/v${VERSION}"
git rm composer.json composer.lock
[ -f "composer.lock" ] && {
git rm composer.lock
}
sed -i -e "s,[0-9]\.[0-9]-dev,${VERSION},g" ext_emconf.php
git add ext_emconf.php
git rm build-release.sh
git commit -m"Release version ${VERSION}"
git tag -s -m"Release version ${VERSION}" v${VERSION}
git push --tags
git commit -m "Release version ${VERSION}"
git tag -s -m "Release version ${VERSION}" v${VERSION}
git push --tags

0 comments on commit 22058b8

Please sign in to comment.