Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(108)

Side by Side Diff: third_party/pkg/angular/scripts/karma/snapshot.sh

Issue 257423008: Update all Angular libs (run update_all.sh). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 #!/bin/sh 1 #!/bin/bash
2 2
3 rm -rf ../karma-snapshot 3 rm -rf ../karma-snapshot
4 mkdir ../karma-snapshot 4 mkdir ../karma-snapshot
5 cd ../karma-snapshot 5 cd ../karma-snapshot
6 6
7 URL=http://localhost:8765 7 URL=http://localhost:9876
8 FILES=$(curl $URL/debug.html --silent | grep \'/base | cut -f2 -d \') 8 FILES=$(curl $URL/debug.html --silent | grep \'/base | cut -f2 -d \')
9 9
10 for FILE in $FILES 10 for FILE in $FILES
11 do 11 do
12 echo $FILE 12 echo $FILE
13 curl $URL$FILE --output .$FILE --create-dirs --silent 13 curl $URL$FILE --output .$FILE --create-dirs --silent
14 done 14 done
15 15
16 echo ================ 16 echo ================
17 17
18 18
19 curl $URL/debug.html --silent | sed -e 's/\/base/\.\/base/' > debug.html 19 curl $URL/debug.html --silent | sed -e 's/\/base/\.\/base/' > debug.html
20 curl $URL/__adapter_dart_unittest.dart --silent | sed -e 's/\/base/\./' > __adap ter_dart_unittest.dart 20 curl $URL/__adapter_dart_unittest.dart --silent | sed -e 's/\/base/\./' > __adap ter_dart_unittest.dart
21 curl $URL/__adapter_dart_unittest.dart.js --silent | sed -e 's/\/base/\./' > __a dapter_dart_unittest.dart.js
OLDNEW
« no previous file with comments | « third_party/pkg/angular/scripts/git/validate-commit-msg.js ('k') | third_party/pkg/angular/scripts/karma_run.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698