Skip to content
This repository was archived by the owner on May 26, 2023. It is now read-only.

Commit b198b5f

Browse files
chore(test): Add script which fetches all latest angular versions for testing. Run periodically
1 parent be08f66 commit b198b5f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

test/angular/update_all.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/bash
2+
3+
for NGVER in 1.* ; do
4+
pushd $NGVER
5+
for PKG in angular angular-animate angular-mocks ; do
6+
curl -O -L https://unpkg.com/${PKG}@${NGVER}/$PKG.js
7+
done
8+
popd
9+
done

0 commit comments

Comments
 (0)