diff options
| author | Tobias Bosch | 2013-12-13 20:02:15 -0800 | 
|---|---|---|
| committer | Tobias Bosch | 2013-12-13 21:49:05 -0800 | 
| commit | 9a4c9e6487e0f51275a7820d0c162aceeadbf561 (patch) | |
| tree | efce73ed82268c92c4b3bfa03c9ed1c44d053b6b /scripts/jenkins/bump-remove-snapshot.sh | |
| parent | 11fff8fa0d370e2f20284510ad0e52cdf3bcb2a3 (diff) | |
| download | angular.js-9a4c9e6487e0f51275a7820d0c162aceeadbf561.tar.bz2 | |
chore(build): correct and refactor release script
Diffstat (limited to 'scripts/jenkins/bump-remove-snapshot.sh')
| -rwxr-xr-x | scripts/jenkins/bump-remove-snapshot.sh | 20 | 
1 files changed, 20 insertions, 0 deletions
| diff --git a/scripts/jenkins/bump-remove-snapshot.sh b/scripts/jenkins/bump-remove-snapshot.sh new file mode 100755 index 00000000..cb1803cb --- /dev/null +++ b/scripts/jenkins/bump-remove-snapshot.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +echo "############################################" +echo "##  Remove "-snapshot" from version ########" +echo "############################################" + +# Enable tracing and exit on first failure +set -xe +# Normalize working dir to script dir +cd `dirname $0`/../.. + +echo "-- old version: `grep '"version"' package.json`" +sed -i .tmp -e 's/"version": "\(.*\)-snapshot"/"version": "\1"/' package.json +VERSION=$(node -e "console.log(require('./package.json').version)" | sed -e 's/\r//g') +echo "-- local version: $VERSION" + +echo "-- commit and tag with v$VERSION" +git add package.json +git commit -m "chore(release): v$VERSION" +git tag -m "v$VERSION" v$VERSION | 
