blob: 1e32ead208560624dfd2ea03e531c72bc9178579 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | #!/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
 |