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

Unified Diff: third_party/pkg/angular/scripts/travis/setup.sh

Issue 257423008: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/pkg/angular/scripts/travis/publish-docs.sh ('k') | third_party/pkg/angular/test/_specs.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/pkg/angular/scripts/travis/setup.sh
diff --git a/third_party/pkg/angular/scripts/travis/setup.sh b/third_party/pkg/angular/scripts/travis/setup.sh
index 9836cbd2fbcb921c0221b40672d631d581def172..334a83fa375a7e2f2fa85eb695d7279b924575d0 100755
--- a/third_party/pkg/angular/scripts/travis/setup.sh
+++ b/third_party/pkg/angular/scripts/travis/setup.sh
@@ -23,12 +23,14 @@ rm -rf dart-sdk
unzip $DART_SDK_ZIP > /dev/null
rm $DART_SDK_ZIP
-echo http://storage.googleapis.com/dart-archive/channels/$CHANNEL/raw/latest/dartium/$DARTIUM_ZIP
-curl http://storage.googleapis.com/dart-archive/channels/$CHANNEL/raw/latest/dartium/$DARTIUM_ZIP > $DARTIUM_ZIP
-unzip $DARTIUM_ZIP > /dev/null
-rm -rf dartium
-rm $DARTIUM_ZIP
-mv dartium-* dartium
+if [[ $TESTS != "dart2js" ]]; then
+ echo http://storage.googleapis.com/dart-archive/channels/$CHANNEL/raw/latest/dartium/$DARTIUM_ZIP
+ curl http://storage.googleapis.com/dart-archive/channels/$CHANNEL/raw/latest/dartium/$DARTIUM_ZIP > $DARTIUM_ZIP
+ unzip $DARTIUM_ZIP > /dev/null
+ rm -rf dartium
+ rm $DARTIUM_ZIP
+ mv dartium-* dartium;
+fi
echo =============================================================================
. ./scripts/env.sh
« no previous file with comments | « third_party/pkg/angular/scripts/travis/publish-docs.sh ('k') | third_party/pkg/angular/test/_specs.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698