aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/bower/init.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/bower/init.sh')
-rwxr-xr-xscripts/bower/init.sh28
1 files changed, 0 insertions, 28 deletions
diff --git a/scripts/bower/init.sh b/scripts/bower/init.sh
deleted file mode 100755
index 74f310b0..00000000
--- a/scripts/bower/init.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/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