blob: 38c21b979237a11c2b904e384bd64642971f2872 (
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 -G --data-urlencode 'ver=$VERSION' http://code.angularjs.org/fetchLatestSnapshot.php
# Push to bower
./scripts/bower/publish.sh
 |