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

Side by Side Diff: utils/pub/sdk/pub

Issue 12782016: Switch pkg packages, pub, and dartdoc to use package: imports. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes. Created 7 years, 9 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 | « utils/pub/sdk.dart ('k') | utils/pub/sdk/pub.bat » ('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 # Run pub.dart on the Dart VM. This script assumes the Dart SDK's directory 2 # Run pub.dart on the Dart VM. This script assumes the Dart SDK's directory
3 # structure. 3 # structure.
4 4
5 # Setting BIN_DIR this way is ugly, but is needed to handle the case where 5 # Setting BIN_DIR this way is ugly, but is needed to handle the case where
6 # dart-sdk/bin has been symlinked to. On MacOS, readlink doesn't work 6 # dart-sdk/bin has been symlinked to. On MacOS, readlink doesn't work
7 # with this case. 7 # with this case.
8 BIN_DIR="$(cd "${0%/*}" ; pwd -P)" 8 BIN_DIR="$(cd "${0%/*}" ; pwd -P)"
9 DART_SDK="$(cd "${BIN_DIR%/*}" ; pwd -P)" 9 DART_SDK="$(cd "${BIN_DIR%/*}" ; pwd -P)"
10 10
11 exec "$BIN_DIR"/dart "$DART_SDK"/util/pub/pub.dart $@ 11 exec "$BIN_DIR"/dart --package-root="$DART_SDK"/packages/ "$DART_SDK"/util/pub/p ub.dart $@
OLDNEW
« no previous file with comments | « utils/pub/sdk.dart ('k') | utils/pub/sdk/pub.bat » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698