mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-04-02 22:37:07 +08:00
25 lines
668 B
Bash
Executable File
25 lines
668 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "#################################"
|
|
echo "#### Update master ##############"
|
|
echo "#################################"
|
|
|
|
# Enable tracing and exit on first failure
|
|
set -xe
|
|
|
|
cd `dirname $0`/../..
|
|
|
|
echo "#################################"
|
|
echo "#### Jenkins Build ############"
|
|
echo "#################################"
|
|
./jenkins_build.sh
|
|
|
|
echo "#################################"
|
|
echo "## Update code.angular.js.org ###"
|
|
echo "#################################"
|
|
./scripts/code.angularjs.org/publish.sh
|
|
|
|
echo "#################################"
|
|
echo "#### Update bower ###############"
|
|
echo "#################################"
|
|
./scripts/bower/publish.sh |