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

Side by Side Diff: sdk/bin/dartdoc

Issue 15362003: Make it possible to symlink to dartdoc and pub in the SDK. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix follow_links in all bin scripts. Created 7 years, 6 months 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 | « sdk/bin/dartanalyzer_developer ('k') | sdk/bin/pub » ('j') | no next file with comments »
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 BIN_DIR this way is ugly, but is needed to handle the case where 6 function follow_links() {
7 # dart-sdk/bin has been symlinked to. On MacOS, readlink doesn't work 7 file="$1"
8 # with this case. 8 while [ -h "$file" ]; do
9 BIN_DIR="$(cd "${0%/*}" ; pwd -P)" 9 # On Mac OS, readlink -f doesn't work.
10 file="$(readlink "$file")"
11 done
12 echo "$(cd "$(dirname $file)"; pwd -P)/$(basename "$file")"
13 }
14
15 # Unlike $0, $BASH_SOURCE points to the absolute path of this file. Follow
16 # symlinks to handle the case where dart-sdk/bin or dart-sdk/bin/pub have been
17 # linked to.
18 BIN_DIR="$(dirname "$(follow_links "$BASH_SOURCE")")"
10 19
11 unset COLORS 20 unset COLORS
12 if test -t 1; then 21 if test -t 1; then
13 # Stdout is a terminal. 22 # Stdout is a terminal.
14 if test 8 -le `tput colors`; then 23 if test 8 -le `tput colors`; then
15 # Stdout has at least 8 colors, so enable colors. 24 # Stdout has at least 8 colors, so enable colors.
16 COLORS="--enable-diagnostic-colors" 25 COLORS="--enable-diagnostic-colors"
17 fi 26 fi
18 fi 27 fi
19 28
20 unset SNAPSHOT 29 unset SNAPSHOT
21 if test -f "$BIN_DIR/../lib/_internal/dartdoc/bin/dartdoc.dart.snapshot"; then 30 if test -f "$BIN_DIR/../lib/_internal/dartdoc/bin/dartdoc.dart.snapshot"; then
22 # TODO(ahe): Remove the following line when we are relatively sure it works. 31 # 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 32 echo Using snapshot "$BIN_DIR/../lib/_internal/dartdoc/bin/dartdoc.dart.snapsh ot" 1>&2
24 SNAPSHOT="--use-script-snapshot=$BIN_DIR/../lib/_internal/dartdoc/bin/dartdoc. dart.snapshot" 33 SNAPSHOT="--use-script-snapshot=$BIN_DIR/../lib/_internal/dartdoc/bin/dartdoc. dart.snapshot"
25 fi 34 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 "$@" 35 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 "$@"
OLDNEW
« no previous file with comments | « sdk/bin/dartanalyzer_developer ('k') | sdk/bin/pub » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698