Skip to content

Commit 80d67fb

Browse files
committed
chore(): update-angular.sh
1 parent 3baa66c commit 80d67fb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

scripts/update-angular.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ function run {
99
cd $SCRIPT_DIR/../config/lib/js/angular/
1010
rm -rf *.js
1111

12-
wget http://code.angularjs.org/$VERSION/angular{,-sanitize,-animate,-resource}{.min.js,.js}
12+
wget https://code.angularjs.org/$VERSION/angular{,-sanitize,-animate,-resource}{.min.js,.js}
1313

1414
# # no min versions of mocks and scenario
15-
wget http://code.angularjs.org/$VERSION/angular{-scenario,-mocks}.js
15+
wget https://code.angularjs.org/$VERSION/angular{-scenario,-mocks}.js
1616

1717
cd $PROJECT_DIR
1818

19-
echo "Setting bower.json angular versions to ~$VERSION"
19+
echo "Setting bower.json angular versions to $VERSION"
2020

21-
replaceJsonProp "bower.json" "angular" "~$VERSION"
22-
replaceJsonProp "bower.json" "angular-animate" "~$VERSION"
23-
replaceJsonProp "bower.json" "angular-sanitize" "~$VERSION"
21+
replaceJsonProp "bower.json" "angular" "$VERSION"
22+
replaceJsonProp "bower.json" "angular-animate" "$VERSION"
23+
replaceJsonProp "bower.json" "angular-sanitize" "$VERSION"
2424
}
2525

2626
source $(dirname $0)/utils.inc

0 commit comments

Comments
 (0)