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

Side by Side Diff: sdk/bin/dart

Issue 68503004: Support symlinking to dart-sdk executables on Linux and Mac. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
« no previous file with comments | « no previous file | sdk/bin/dart2js » ('j') | sdk/bin/dart2js » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3 # for details. All rights reserved. Use of this source code is governed by a 3 # for details. All rights reserved. Use of this source code is governed by a
4 # BSD-style license that can be found in the LICENSE file. 4 # BSD-style license that can be found in the LICENSE file.
5 5
6 # Setting CUR_DIR this way is ugly, but is needed to handle the case where 6 # Setting CUR_DIR this way is ugly, but is needed to handle the case where
7 # sdk/bin has been symlinked to. On MacOS, readlink doesn't work with this case. 7 # sdk/bin or the script itself has been symlinked to. On MacOS, readlink -f
8 CUR_DIR="$(cd "${0%/*}" ; pwd -P)" 8 # doesn't work with this case.
9 SCRIPT=`readlink "$0" || echo "$0"`
10 CUR_DIR="$(cd "${SCRIPT%/*}" ; pwd -P)"
9 11
10 if [ -z "$DART_CONFIGURATION" ]; 12 if [ -z "$DART_CONFIGURATION" ];
11 then 13 then
12 DART_CONFIGURATION="ReleaseIA32" 14 DART_CONFIGURATION="ReleaseIA32"
13 fi 15 fi
14 16
15 if [[ `uname` == 'Darwin' ]]; 17 if [[ `uname` == 'Darwin' ]];
16 then 18 then
17 BIN_DIR="$CUR_DIR"/../../xcodebuild/$DART_CONFIGURATION 19 BIN_DIR="$CUR_DIR"/../../xcodebuild/$DART_CONFIGURATION
18 else 20 else
19 BIN_DIR="$CUR_DIR"/../../out/$DART_CONFIGURATION 21 BIN_DIR="$CUR_DIR"/../../out/$DART_CONFIGURATION
20 fi 22 fi
21 23
22 exec "$BIN_DIR"/dart "$@" 24 exec "$BIN_DIR"/dart "$@"
OLDNEW
« no previous file with comments | « no previous file | sdk/bin/dart2js » ('j') | sdk/bin/dart2js » ('J')

Powered by Google App Engine
This is Rietveld 408576698