OLD | NEW |
---|---|
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 BIN_DIR this way is ugly, but is needed to handle the case where | 6 # Setting BIN_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 | 7 # dart-sdk/bin has been symlinked to. On MacOS, readlink doesn't work |
8 # with this case. | 8 # with this case. |
9 BIN_DIR="$(cd "${0%/*}" ; pwd -P)" | 9 BIN_DIR="$(cd "${0%/*}" ; pwd -P)" |
10 | 10 |
11 unset COLORS | 11 unset COLORS |
12 if test -t 1; then | 12 if test -t 1; then |
13 # Stdout is a terminal. | 13 # Stdout is a terminal. |
14 if test 8 -le `tput colors`; then | 14 if test 8 -le `tput colors`; then |
15 # Stdout has at least 8 colors, so enable colors. | 15 # Stdout has at least 8 colors, so enable colors. |
16 COLORS="--enable-diagnostic-colors" | 16 COLORS="--enable-diagnostic-colors" |
17 fi | 17 fi |
18 fi | 18 fi |
19 | 19 |
20 unset SNAPSHOT | 20 unset SNAPSHOT |
21 if test -f "$BIN_DIR/../lib/_internal/dartdoc/bin/dartdoc.dart.snapshot"; then | 21 |
22 SNAPSHOT="$BIN_DIR/snapshots/utils_wrapper.dart.snapshot" | |
23 | |
24 if test -f $SNAPSHOT; then | |
22 # TODO(ahe): Remove the following line when we are relatively sure it works. | 25 # TODO(ahe): Remove the following line when we are relatively sure it works. |
23 echo Using snapshot "$BIN_DIR/../lib/_internal/dartdoc/bin/dartdoc.dart.snapsh ot" 1>&2 | 26 echo Using snapshot $SNAPSHOT 1>&2 |
24 SNAPSHOT="--use-script-snapshot=$BIN_DIR/../lib/_internal/dartdoc/bin/dartdoc. dart.snapshot" | 27 exec "$BIN_DIR"/dart --heap_growth_rate=32 $SNAPSHOT dartdoc $COLORS \ |
28 "--package-root=$BIN_DIR/../packages/" "$@" | |
kustermann
2013/04/15 07:48:03
Since we're using a snapshot, the '--package-root'
ricow1
2013/04/17 06:58:49
As I mentioned on Peters question, we don't need p
| |
29 else | |
30 exec "$BIN_DIR"/dart --heap_growth_rate=32 \ | |
31 "--package-root=$BIN_DIR/../packages/" \ | |
32 "$BIN_DIR/../lib/_internal/dartdoc/bin/dartdoc.dart" $COLORS "$@" | |
25 fi | 33 fi |
26 exec "$BIN_DIR"/dart --heap_growth_rate=32 "--package-root=$BIN_DIR/../packages/ " $SNAPSHOT "$BIN_DIR/../lib/_internal/dartdoc/bin/dartdoc.dart" "--package-root =$BIN_DIR/../packages/" $COLORS "$@" | |
OLD | NEW |