chore: add script for updating bower repos

This commit is contained in:
Brian Ford
2013-11-22 16:41:17 -08:00
parent 8383ecfcdf
commit 3fcd228441
4 changed files with 139 additions and 0 deletions

28
scripts/bower/init.sh Executable file
View File

@@ -0,0 +1,28 @@
#!/bin/bash
#
# init all of the bower repos
#
set -e # fail if any command fails
REPOS=(
angular \
angular-animate \
angular-cookies \
angular-i18n \
angular-loader \
angular-mocks \
angular-route \
angular-resource \
angular-sanitize \
angular-scenario \
angular-touch \
)
cd `dirname $0`
for repo in "${REPOS[@]}"
do
git clone git@github.com:angular/bower-$repo.git
done