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

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

Issue 180843004: Revert revision 33053 (Closed) Base URL: http://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
OLDNEW
1 #!/bin/sh 1 #!/bin/sh
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:8765
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/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/scripts/generate-documentation.sh ('k') | third_party/pkg/angular/scripts/travis/build.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698