| Index: third_party/pkg/di/scripts/travis/setup.sh
|
| ===================================================================
|
| --- third_party/pkg/di/scripts/travis/setup.sh (revision 33054)
|
| +++ third_party/pkg/di/scripts/travis/setup.sh (working copy)
|
| @@ -1,27 +0,0 @@
|
| -#!/bin/bash
|
| -
|
| -set -e
|
| -
|
| -case $( uname -s ) in
|
| - Linux)
|
| - DART_SDK_ZIP=dartsdk-linux-x64-release.zip
|
| - ;;
|
| - Darwin)
|
| - DART_SDK_ZIP=dartsdk-macos-x64-release.zip
|
| - ;;
|
| -esac
|
| -
|
| -CHANNEL=`echo $JOB | cut -f 2 -d -`
|
| -echo Fetch Dart channel: $CHANNEL
|
| -
|
| -echo http://storage.googleapis.com/dart-archive/channels/$CHANNEL/release/latest/sdk/$DART_SDK_ZIP
|
| -curl http://storage.googleapis.com/dart-archive/channels/$CHANNEL/release/latest/sdk/$DART_SDK_ZIP > $DART_SDK_ZIP
|
| -echo Fetched new dart version $(unzip -p $DART_SDK_ZIP dart-sdk/version)
|
| -rm -rf dart-sdk
|
| -unzip $DART_SDK_ZIP > /dev/null
|
| -rm $DART_SDK_ZIP
|
| -
|
| -echo =============================================================================
|
| -. ./scripts/env.sh
|
| -$DART --version
|
| -$PUB install
|
|
|