Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 export DART_SDK="$(cd "${BIN_DIR%/*}" ; pwd -P)" | 9 export DART_SDK="$(cd "${BIN_DIR%/*}" ; pwd -P)" |
| 10 | 10 |
| 11 # TODO(dgrove): This doesn't work yet. It will once dartbug.com/6619 is | 11 exec "$BIN_DIR"/dart --package-root="$DART_SDK"/packages/ \ |
|
Bob Nystrom
2013/04/23 19:41:19
In a separate patch, can you also move packages un
nweiz
2013/04/23 19:56:27
Do you mean in the SDK, or in the repo as well?
C
Bob Nystrom
2013/04/23 20:26:14
In the SDK.
| |
| 12 # fixed. | 12 "$DART_SDK"/lib/_internal/pub/bin/pub.dart $@ |
| 13 exec "$BIN_DIR"/dart "$DART_SDK"/lib/_internal/pub/pub.dart $@ | |
| OLD | NEW |