| Index: sdk/lib/_internal/pub_generated/lib/src/command/list_package_dirs.dart
|
| diff --git a/sdk/lib/_internal/pub_generated/lib/src/command/list_package_dirs.dart b/sdk/lib/_internal/pub_generated/lib/src/command/list_package_dirs.dart
|
| index 6c08c762e3448b55fbe523f20900703862e4c900..c68d8e0289dcc6f89e887ef513ced7fe06cba95f 100644
|
| --- a/sdk/lib/_internal/pub_generated/lib/src/command/list_package_dirs.dart
|
| +++ b/sdk/lib/_internal/pub_generated/lib/src/command/list_package_dirs.dart
|
| @@ -14,18 +14,20 @@ import '../utils.dart';
|
|
|
| /// Handles the `list-package-dirs` pub command.
|
| class ListPackageDirsCommand extends PubCommand {
|
| + String get name => "list-package-dirs";
|
| String get description => "Print local paths to dependencies.";
|
| - String get usage => "pub list-package-dirs";
|
| + String get invocation => "pub list-package-dirs";
|
| + bool get takesArguments => false;
|
| bool get hidden => true;
|
|
|
| ListPackageDirsCommand() {
|
| - commandParser.addOption(
|
| + argParser.addOption(
|
| "format",
|
| help: "How output should be displayed.",
|
| allowed: ["json"]);
|
| }
|
|
|
| - Future onRun() {
|
| + Future run() {
|
| log.json.enabled = true;
|
|
|
| if (!entrypoint.lockFileExists) {
|
|
|