|
OLD | NEW |
---|---|
(Empty) | |
1 #!/bin/bash | |
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 | |
4 # BSD-style license that can be found in the LICENSE file. | |
5 | |
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. | |
8 CUR_DIR="$(cd "${0%/*}" ; pwd -P)" | |
Ivan Posva
2012/11/08 19:26:05
Empty line between figuring out the current direct
dgrove
2012/11/09 23:04:30
Done.
| |
9 if [ -z "$DART_VERSION" ]; | |
Ivan Posva
2012/11/08 19:26:05
Unfortunately I have no better suggestion than a e
ahe
2012/11/09 16:37:05
DART_CONFIGURATION?
dgrove
2012/11/09 23:04:30
I went with DART_CONFIGURATION.
| |
10 then | |
11 DART_VERSION="ReleaseIA32" | |
12 fi | |
13 | |
14 if [[ `uname` -eq 'Darwin' ]]; | |
15 then | |
16 BIN_DIR="$CUR_DIR"/../../xcodebuild/$DART_VERSION | |
17 else | |
18 BIN_DIR="$CUR_DIR"/../../out/$DART_VERSION | |
19 fi | |
20 | |
21 exec "$BIN_DIR"/dart "$@" | |
OLD | NEW |