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

Side by Side Diff: third_party/pkg/route_hierarchical/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 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 case $( uname -s ) in 5 case $( uname -s ) in
6 Linux) 6 Linux)
7 DART_SDK_ZIP=dartsdk-linux-x64-release.zip 7 DART_SDK_ZIP=dartsdk-linux-x64-release.zip
8 DARTIUM_ZIP=dartium-linux-x64-release.zip 8 DARTIUM_ZIP=dartium-linux-x64-release.zip
9 ;; 9 ;;
10 Darwin) 10 Darwin)
(...skipping 16 matching lines...) Expand all
27 curl http://storage.googleapis.com/dart-archive/channels/$CHANNEL/raw/latest/dar tium/$DARTIUM_ZIP > $DARTIUM_ZIP 27 curl http://storage.googleapis.com/dart-archive/channels/$CHANNEL/raw/latest/dar tium/$DARTIUM_ZIP > $DARTIUM_ZIP
28 unzip $DARTIUM_ZIP > /dev/null 28 unzip $DARTIUM_ZIP > /dev/null
29 rm -rf dartium 29 rm -rf dartium
30 rm $DARTIUM_ZIP 30 rm $DARTIUM_ZIP
31 mv dartium-* dartium 31 mv dartium-* dartium
32 32
33 echo =========================================================================== == 33 echo =========================================================================== ==
34 . ./scripts/env.sh 34 . ./scripts/env.sh
35 $DART --version 35 $DART --version
36 $PUB install 36 $PUB install
OLDNEW
« no previous file with comments | « third_party/pkg/route_hierarchical/scripts/travis-build.sh ('k') | third_party/pkg/route_hierarchical/test/pattern_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698