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

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

Issue 1058283006: Update pubspecs and dependencies to get pkgbuild tests working. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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
(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/__adapter_dart_unittest.dart --silent | sed -e 's/\/base/\./' > __adap ter_dart_unittest.dart
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698