mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
15 lines
346 B
Bash
Executable File
15 lines
346 B
Bash
Executable File
#!/bin/bash
|
|
|
|
VER=$1
|
|
|
|
if [[ $VER == "" ]]; then
|
|
echo '-- Usage: ./scripts/update-angular.sh <version>'
|
|
echo ' example: ./scripts/update-angular.sh 1.2.10'
|
|
exit 1
|
|
fi
|
|
|
|
cd $(dirname $0)/../config/lib/js/angular/
|
|
|
|
rm -rf *.js
|
|
wget http://code.angularjs.org/$VER/angular{,-animate,-mocks,-resource,-scenario,-animate.min,-resource.min,.min}.js
|