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

Side by Side Diff: third_party/pkg/di/scripts/env.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, 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
« no previous file with comments | « third_party/pkg/di/run-tests.sh ('k') | third_party/pkg/di/scripts/travis/benchmark.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/sh
2 set -e
3
4 if [ -n "$DART_SDK" ]; then
5 DARTSDK=$DART_SDK
6 else
7 echo "sdk=== $DARTSDK"
8 DART=`which dart|cat` # pipe to cat to ignore the exit code
9 DARTSDK=`which dart | sed -e 's/\/bin\/dart$/\//'`
10 if [ -z "$DARTSDK" ]; then
11 DARTSDK="`pwd`/dart-sdk"
12 fi
13 fi
14
15 export DART_SDK="$DARTSDK"
16 export DART=${DART:-"$DARTSDK/bin/dart"}
17 export PUB=${PUB:-"$DARTSDK/bin/pub"}
18 export DARTANALYZER=${DARTANALYZER:-"$DARTSDK/bin/dartanalyzer"}
19 export DARTDOC=${DARTDOC:-"$DARTSDK/bin/dartdoc"}
20
21
22 export DART_FLAGS='--enable_type_checks --enable_asserts'
23 export PATH=$PATH:$DARTSDK/bin
OLDNEW
« no previous file with comments | « third_party/pkg/di/run-tests.sh ('k') | third_party/pkg/di/scripts/travis/benchmark.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698