| Index: sdk/lib/_internal/pub/lib/src/command.dart
|
| diff --git a/sdk/lib/_internal/pub/lib/src/command.dart b/sdk/lib/_internal/pub/lib/src/command.dart
|
| index e8b7ed0e09fa14a9589802d0ed8de194b61dd5bc..8f3ef55932500b22ed9c6bb7de11b7890fb6b7df 100644
|
| --- a/sdk/lib/_internal/pub/lib/src/command.dart
|
| +++ b/sdk/lib/_internal/pub/lib/src/command.dart
|
| @@ -78,7 +78,7 @@ abstract class PubCommand {
|
| help: 'Print usage information for this command.');
|
| }
|
|
|
| - void run(String cacheDir, ArgResults options) {
|
| + void run(String cacheDir, ArgResults options, List<String> arguments) {
|
| commandOptions = options.command;
|
|
|
| if (commandOptions['help']) {
|
| @@ -111,7 +111,7 @@ abstract class PubCommand {
|
| log.error("""
|
| This is an unexpected error. Please run
|
|
|
| - pub --trace ${new Options().arguments.map((arg) => "'$arg'").join(' ')}
|
| + pub --trace ${arguments.map((arg) => "'$arg'").join(' ')}
|
|
|
| and include the results in a bug report on http://dartbug.com/new.
|
| """);
|
|
|