diff options
| author | Tobias Bosch | 2014-01-07 14:47:03 -0800 | 
|---|---|---|
| committer | Tobias Bosch | 2014-01-07 15:49:03 -0800 | 
| commit | e89150ca0f462c8673e03bc29bce0d2dd51c6e03 (patch) | |
| tree | 67a261157ea6dc0dc6c4c6b3728655c68cdc480b /scripts/jenkins/master.sh | |
| parent | 9693a426e3814c0c2d83802015ae6cd8cfec8e3e (diff) | |
| download | angular.js-e89150ca0f462c8673e03bc29bce0d2dd51c6e03.tar.bz2 | |
chore(build): Add angular-seed and angular-phonecat to the release
Diffstat (limited to 'scripts/jenkins/master.sh')
| -rwxr-xr-x | scripts/jenkins/master.sh | 12 | 
1 files changed, 10 insertions, 2 deletions
| diff --git a/scripts/jenkins/master.sh b/scripts/jenkins/master.sh index 93af4d94..b9911105 100755 --- a/scripts/jenkins/master.sh +++ b/scripts/jenkins/master.sh @@ -8,6 +8,13 @@ ARG_DEFS=(    "[--no-test=(true|false)]"  ) +function init { +  if [[ ! $VERBOSE ]]; then +    VERBOSE=false +  fi +  VERBOSE_ARG="--verbose=$VERBOSE" +} +  function build {    cd ../.. @@ -22,8 +29,9 @@ function build {  }  function phase { -  ../code.angularjs.org/publish.sh --action=$1 -  ../bower/publish.sh --action=$1 +  ACTION_ARG="--action=$1" +  ../code.angularjs.org/publish.sh $ACTION_ARG $VERBOSE_ARG +  ../bower/publish.sh $ACTION_ARG $VERBOSE_ARG  }  function run { | 
