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

Side by Side Diff: third_party/pkg/angular/scripts/test-expression-extractor.sh

Issue 256553002: Revert "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/bash 1 #!/bin/bash
2 2
3 set -e 3 set -e
4 4
5 . $(dirname $0)/env.sh 5 (cd demo/todo; pub get)
6
7 (cd $NGDART_BASE_DIR/example; pub get)
8
9 rm -rf xxx.dart
10 6
11 OUT=$(mktemp XXX.dart) 7 OUT=$(mktemp XXX.dart)
12 8
13 $DART --package-root=example/packages bin/expression_extractor.dart \ 9 dart bin/expression_extractor.dart demo/todo/main.dart demo/todo /dev/null /dev/ null $OUT
14 example/web/todo.dart example /dev/null /dev/null $OUT
15 10
16 if [[ -e $OUT ]]; then 11 if [[ -e $OUT ]]; then
17 echo "Expression extractor created an output file" 12 echo "Expression extractor created an output file"
18 rm -rf $OUT 13 rm $OUT
19 exit; 14 exit;
20 fi; 15 fi;
21 16
22 # The file did not exist, exit with error. 17 # The file did not exist, exit with error.
23 exit 1 18 exit 1
OLDNEW
« no previous file with comments | « third_party/pkg/angular/scripts/run-test.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