From e89150ca0f462c8673e03bc29bce0d2dd51c6e03 Mon Sep 17 00:00:00 2001 From: Tobias Bosch Date: Tue, 7 Jan 2014 14:47:03 -0800 Subject: chore(build): Add angular-seed and angular-phonecat to the release --- scripts/angular-seed/publish.sh | 44 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100755 scripts/angular-seed/publish.sh (limited to 'scripts/angular-seed') diff --git a/scripts/angular-seed/publish.sh b/scripts/angular-seed/publish.sh new file mode 100755 index 00000000..94498d67 --- /dev/null +++ b/scripts/angular-seed/publish.sh @@ -0,0 +1,44 @@ +#!/bin/bash + +# Script for updating angular-seed repo from current local build. + +echo "#################################" +echo "## Update angular-seed ###" +echo "#################################" + +ARG_DEFS=( + "--action=(prepare|publish)" + "[--no-test=(true|false)]" +) + +function init { + TMP_DIR=$(resolveDir ../../tmp) + BUILD_DIR=$(resolveDir ../../build) + REPO_DIR=$TMP_DIR/angular-seed + NEW_VERSION=$(cat $BUILD_DIR/version.txt) +} + +function prepare { + echo "-- Cloning angular-seed" + git clone git@github.com:angular/angular-seed.git $REPO_DIR + + # + # copy the files from the build + # + echo "-- Updating angular-seed" + cd $REPO_DIR + ./scripts/update-angular.sh $BUILD_DIR + + # Test + if [[ $NO_TEST != "true" ]]; then + ./scripts/test-all.sh + fi +} + +function publish { + cd $REPO_DIR + echo "-- Pushing angular-seed" + git push origin master +} + +source $(dirname $0)/../utils.inc -- cgit v1.2.3