12345678910111213141516171819202122232425262728293031323334 |
- #!/bin/sh
- cd `dirname "$0"`/../..
- echo rm -rf *
- echo git checkout master
- echo -n "Which version are you going to publish [0 to skip]? "
- VER=`head -n 1`
- if [ "$VER" = "0" ]; then :; else
- echo "Publishing version $VER"
- cli/support/setversion.sh "$VER"
- cp package.json package.json.bak
- sed -e 's@/amber.git.*"@/amber.git#'"$VER"'"@' package.json.bak >package.json
- rm package.json.bak
- git commit -a -m "Release version $VER"
- git tag -a "$VER"
- echo Please check if everything is ok, then publish the new release with 'npm publish'
- fi
- echo -n "Which version are you going to work on? "
- VERF=`head -n 1`
- VER="${VERF}-pre"
- echo "Setting version $VER"
- cli/support/setversion.sh "$VER"
- cp package.json package.json.bak
- sed -e 's@/amber.git.*"@/amber.git"@' package.json.bak >package.json
- rm package.json.bak
- git commit -a -m "Working on $VERF"
- echo Please check if everything is ok, then push changes with 'git push --tags'
|