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

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

Issue 148453003: Updating Angular version (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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
« no previous file with comments | « third_party/pkg/angular/karma-perf.conf.js ('k') | third_party/pkg/angular/karma.conf.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/sh
2
3 rm -rf ../karma-snapshot
4 mkdir ../karma-snapshot
5 cd ../karma-snapshot
6
7 URL=http://localhost:8765
8 FILES=$(curl $URL/debug.html --silent | grep \'/base | cut -f2 -d \')
9
10 for FILE in $FILES
11 do
12 echo $FILE
13 curl $URL$FILE --output .$FILE --create-dirs --silent
14 done
15
16 echo ================
17
18
19 curl $URL/debug.html --silent | sed -e 's/\/base/\.\/base/' > debug.html
20 curl $URL/base/__adapter_dart_unittest.dart --silent | sed -e 's/\/base/\./' > b ase/__adapter_dart_unittest.dart
OLDNEW
« no previous file with comments | « third_party/pkg/angular/karma-perf.conf.js ('k') | third_party/pkg/angular/karma.conf.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698