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

Side by Side Diff: sdk/bin/docgen

Issue 418223008: Make docgen script work for directories with spaces in their names (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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 | « no previous file | no next file » | 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) 2014, the Dart project authors. Please see the AUTHORS file 2 # Copyright (c) 2014, 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 function follow_links() { 6 function follow_links() {
7 file="$1" 7 file="$1"
8 while [ -h "$file" ]; do 8 while [ -h "$file" ]; do
9 # On Mac OS, readlink -f doesn't work. 9 # On Mac OS, readlink -f doesn't work.
10 file="$(readlink "$file")" 10 file="$(readlink "$file")"
11 done 11 done
12 echo "$file" 12 echo "$file"
13 } 13 }
14 14
15 # Unlike $0, $BASH_SOURCE points to the absolute path of this file. 15 # Unlike $0, $BASH_SOURCE points to the absolute path of this file.
16 PROG_NAME="$(follow_links "$BASH_SOURCE")" 16 PROG_NAME="$(follow_links "$BASH_SOURCE")"
17 17
18 # Handle the case where dart-sdk/bin has been symlinked to. 18 # Handle the case where dart-sdk/bin has been symlinked to.
19 BIN_DIR="$(cd "${PROG_NAME%/*}" ; pwd -P)" 19 BIN_DIR="$(cd "${PROG_NAME%/*}" ; pwd -P)"
20 20
21 SDK_DIR="$(cd "${BIN_DIR}/.." ; pwd -P)" 21 SDK_DIR="$(cd "${BIN_DIR}/.." ; pwd -P)"
22 22
23 unset SNAPSHOT 23 unset SNAPSHOT
24 24
25 SNAPSHOT="$BIN_DIR/snapshots/utils_wrapper.dart.snapshot" 25 SNAPSHOT="$BIN_DIR/snapshots/utils_wrapper.dart.snapshot"
26 26
27 if test -f $SNAPSHOT; then 27 if test -f "$SNAPSHOT"; then
28 exec "$BIN_DIR"/dart \ 28 exec "$BIN_DIR"/dart \
29 "--package-root=$BIN_DIR/../packages/" $SNAPSHOT \ 29 "--package-root=$BIN_DIR/../packages/" "$SNAPSHOT" \
30 docgen "--sdk=$SDK_DIR" "$@" 30 docgen "--sdk=$SDK_DIR" "$@"
31 else 31 else
32 exec "$BIN_DIR"/dart \ 32 exec "$BIN_DIR"/dart \
33 "--package-root=$BIN_DIR/../packages/" \ 33 "--package-root=$BIN_DIR/../packages/" \
34 "$BIN_DIR/../../pkg/docgen/bin/docgen.dart" "--sdk=$SDK_DIR" "$@" 34 "$BIN_DIR/../../pkg/docgen/bin/docgen.dart" "--sdk=$SDK_DIR" "$@"
35 fi 35 fi
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698