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

Side by Side Diff: third_party/pkg/di/scripts/travis/setup.sh

Issue 1086713003: Remove everything but markdown from third_party (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 7 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 case $( uname -s ) in
6 Linux)
7 DART_SDK_ZIP=dartsdk-linux-x64-release.zip
8 ;;
9 Darwin)
10 DART_SDK_ZIP=dartsdk-macos-x64-release.zip
11 ;;
12 esac
13
14 CHANNEL=`echo $JOB | cut -f 2 -d -`
15 echo Fetch Dart channel: $CHANNEL
16
17 echo http://storage.googleapis.com/dart-archive/channels/$CHANNEL/release/latest /sdk/$DART_SDK_ZIP
18 curl http://storage.googleapis.com/dart-archive/channels/$CHANNEL/release/latest /sdk/$DART_SDK_ZIP > $DART_SDK_ZIP
19 echo Fetched new dart version $(unzip -p $DART_SDK_ZIP dart-sdk/version)
20 rm -rf dart-sdk
21 unzip $DART_SDK_ZIP > /dev/null
22 rm $DART_SDK_ZIP
23
24 echo =========================================================================== ==
25 . ./scripts/env.sh
26 $DART --version
27 $PUB install
OLDNEW
« no previous file with comments | « third_party/pkg/di/scripts/travis/build.sh ('k') | third_party/pkg/di/test/assets/gen_test1/a.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698