| Index: sdk/lib/_internal/pub_generated/lib/src/command/version.dart
|
| diff --git a/sdk/lib/_internal/pub_generated/lib/src/command/version.dart b/sdk/lib/_internal/pub_generated/lib/src/command/version.dart
|
| index bab6c6b9bbd69cdefd2d100207e32c11c48423cc..de40572a3a430a86ad405073573ebbd48af5a253 100644
|
| --- a/sdk/lib/_internal/pub_generated/lib/src/command/version.dart
|
| +++ b/sdk/lib/_internal/pub_generated/lib/src/command/version.dart
|
| @@ -4,19 +4,17 @@
|
|
|
| library pub.command.version;
|
|
|
| -import 'dart:async';
|
| -
|
| import '../command.dart';
|
| import '../log.dart' as log;
|
| import '../sdk.dart' as sdk;
|
|
|
| /// Handles the `version` pub command.
|
| class VersionCommand extends PubCommand {
|
| + String get name => "version";
|
| String get description => "Print pub version.";
|
| - String get usage => "pub version";
|
| + String get invocation => "pub version";
|
|
|
| - Future onRun() {
|
| + void run() {
|
| log.message("Pub ${sdk.version}");
|
| - return null;
|
| }
|
| }
|
|
|