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

Side by Side Diff: sdk/bin/pub

Issue 11381003: Create wrappers for MacOS/Linux to allow sdk "binaries" to be (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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
« sdk/bin/dart2js ('K') | « sdk/bin/dartdoc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:executable
+ *
OLDNEW
(Empty)
1 #!/bin/bash
2 # Run pub.dart on the Dart VM. This script assumes the Dart SDK's directory
3 # structure.
4
5 # Setting BIN_DIR this way is ugly, but is needed to handle the case where
6 # dart-sdk/bin has been symlinked to. On MacOS, readlink doesn't work
7 # with this case.
8 CUR_DIR="$(cd "${0%/*}" ; pwd -P)"
9 export DART_SDK="$(cd "${CUR_DIR%/*}" ; pwd -P)"
10
11 if [ -z "$DART_VERSION" ];
12 then
13 DART_VERSION="ReleaseIA32"
14 fi
15
16 if [[ `uname` -eq 'Darwin' ]];
17 then
18 BIN_DIR="$CUR_DIR"/../../xcodebuild/$DART_VERSION
19 else
20 BIN_DIR="$CUR_DIR"/../../out/$DART_VERSION
21 fi
22
23 exec "$BIN_DIR"/dart "$DART_SDK"/../utils/pub/pub.dart $@
OLDNEW
« sdk/bin/dart2js ('K') | « sdk/bin/dartdoc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698