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 # dart-sdk/bin has been symlinked to. On MacOS, readlink doesn't work |
| 8 # with this case. |
| 9 CUR_DIR="$(cd "${0%/*}" ; pwd -P)" |
| 10 if [ -z "$DART_VERSION" ]; |
| 11 then |
| 12 DART_VERSION="ReleaseIA32" |
| 13 fi |
| 14 |
| 15 if [[ `uname` -eq 'Darwin' ]]; |
| 16 then |
| 17 BIN_DIR="$CUR_DIR"/../../xcodebuild/$DART_VERSION |
| 18 else |
| 19 BIN_DIR="$CUR_DIR"/../../out/$DART_VERSION |
| 20 fi |
| 21 |
| 22 unset COLORS |
| 23 if test -t 1; then |
| 24 # Stdout is a terminal. |
| 25 if test 8 -le `tput colors`; then |
| 26 # Stdout has at least 8 colors, so enable colors. |
| 27 COLORS="--enable-diagnostic-colors" |
| 28 fi |
| 29 fi |
| 30 |
| 31 exec "$BIN_DIR"/dart --no_use_inlining --heap_growth_rate=32 "$CUR_DIR/../lib/_i
nternal/dartdoc/bin/dartdoc.dart" $COLORS "$@" |
OLD | NEW |