| Index: sdk/lib/_internal/pub/lib/src/command/version.dart
|
| diff --git a/sdk/lib/_internal/pub/lib/src/command/version.dart b/sdk/lib/_internal/pub/lib/src/command/version.dart
|
| index 5fa6026835b5333614f2f7e8841581467cc45f93..485536154f9d39135620ababf34f7aa9220a3f89 100644
|
| --- a/sdk/lib/_internal/pub/lib/src/command/version.dart
|
| +++ b/sdk/lib/_internal/pub/lib/src/command/version.dart
|
| @@ -12,11 +12,11 @@ import '../sdk.dart' as sdk;
|
|
|
| /// Handles the `version` pub command.
|
| class VersionCommand extends PubCommand {
|
| - String get description => 'Print pub version.';
|
| - String get usage => 'pub version';
|
| + String get description => "Print pub version.";
|
| + String get usage => "pub version";
|
| bool get requiresEntrypoint => false;
|
|
|
| Future onRun() {
|
| - log.message('Pub ${sdk.version}');
|
| + log.message("Pub ${sdk.version}");
|
| }
|
| }
|
|
|