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

Side by Side Diff: third_party/pkg/angular/scripts/test-expression-extractor.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/bash
2
3 set -e
4
5 (cd demo/todo; pub get)
6
7 OUT=$(mktemp XXX.dart)
8
9 dart bin/expression_extractor.dart demo/todo/main.dart demo/todo /dev/null /dev/ null $OUT
10
11 if [[ -e $OUT ]]; then
12 echo "Expression extractor created an output file"
13 rm $OUT
14 exit;
15 fi;
16
17 # The file did not exist, exit with error.
18 exit 1
OLDNEW
« no previous file with comments | « third_party/pkg/angular/scripts/karma/snapshot.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