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

Side by Side Diff: sdk/bin/dartdoc

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
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 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 -f doesn't work with
8 # with this case. 8 # this case.
9 BIN_DIR="$(cd "${0%/*}" ; pwd -P)" 9 SCRIPT=`readlink "$0" || echo "$0"`
10 BIN_DIR="$(cd "${SCRIPT%/*}" ; pwd -P)"
10 11
11 unset COLORS 12 unset COLORS
12 if test -t 1; then 13 if test -t 1; then
13 # Stdout is a terminal. 14 # Stdout is a terminal.
14 if test 8 -le `tput colors`; then 15 if test 8 -le `tput colors`; then
15 # Stdout has at least 8 colors, so enable colors. 16 # Stdout has at least 8 colors, so enable colors.
16 COLORS="--enable-diagnostic-colors" 17 COLORS="--enable-diagnostic-colors"
17 fi 18 fi
18 fi 19 fi
19 20
20 unset SNAPSHOT 21 unset SNAPSHOT
21 22
22 SNAPSHOT="$BIN_DIR/snapshots/utils_wrapper.dart.snapshot" 23 SNAPSHOT="$BIN_DIR/snapshots/utils_wrapper.dart.snapshot"
23 24
24 if test -f $SNAPSHOT; then 25 if test -f $SNAPSHOT; then
25 # TODO(ahe): Remove the following line when we are relatively sure it works. 26 # TODO(ahe): Remove the following line when we are relatively sure it works.
26 echo Using snapshot $SNAPSHOT 1>&2 27 echo Using snapshot $SNAPSHOT 1>&2
27 exec "$BIN_DIR"/dart --heap_growth_rate=32 \ 28 exec "$BIN_DIR"/dart --heap_growth_rate=32 \
28 "--package-root=$BIN_DIR/../packages/" $SNAPSHOT dartdoc $COLORS \ 29 "--package-root=$BIN_DIR/../packages/" $SNAPSHOT dartdoc $COLORS \
29 "--package-root=$BIN_DIR/../packages/" "--library-root=$BIN_DIR/.." "$@" 30 "--package-root=$BIN_DIR/../packages/" "--library-root=$BIN_DIR/.." "$@"
30 else 31 else
31 exec "$BIN_DIR"/dart --heap_growth_rate=32 \ 32 exec "$BIN_DIR"/dart --heap_growth_rate=32 \
32 "--package-root=$BIN_DIR/../packages/" \ 33 "--package-root=$BIN_DIR/../packages/" \
33 "$BIN_DIR/../lib/_internal/dartdoc/bin/dartdoc.dart" $COLORS "$@" 34 "$BIN_DIR/../lib/_internal/dartdoc/bin/dartdoc.dart" $COLORS "$@"
34 fi 35 fi
OLDNEW
« sdk/bin/dart2js ('K') | « sdk/bin/dartanalyzer_developer ('k') | sdk/bin/pub » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698