mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-17 15:40:22 +00:00
25 lines
No EOL
668 B
Bash
Executable file
25 lines
No EOL
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 |