mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-17 07:40:22 +00:00
14 lines
No EOL
270 B
Bash
Executable file
14 lines
No EOL
270 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e # fail if any command fails
|
|
cd `dirname $0`/../..
|
|
|
|
# Build
|
|
./jenkins_build.sh
|
|
|
|
# Update code.angularjs.org
|
|
VERSION=`cat build/version.txt`
|
|
curl http://code.angularjs.org/fetchLatestSnapshot.php?ver=$VERSION
|
|
|
|
# Push to bower
|
|
./scripts/bower/publish.sh |