| Index: sdk/lib/_internal/pub/lib/src/command/upgrade.dart
|
| diff --git a/sdk/lib/_internal/pub/lib/src/command/upgrade.dart b/sdk/lib/_internal/pub/lib/src/command/upgrade.dart
|
| index 841a3ef6d79894c16bac2e49f1f07a61b83adeca..bd2389d8ebe1736388dd39ebbad6f8b48ee581db 100644
|
| --- a/sdk/lib/_internal/pub/lib/src/command/upgrade.dart
|
| +++ b/sdk/lib/_internal/pub/lib/src/command/upgrade.dart
|
| @@ -12,27 +12,27 @@ import '../solver/version_solver.dart';
|
|
|
| /// Handles the `upgrade` pub command.
|
| class UpgradeCommand extends PubCommand {
|
| + String get name => "upgrade";
|
| String get description =>
|
| "Upgrade the current package's dependencies to latest versions.";
|
| - String get usage => "pub upgrade [dependencies...]";
|
| + String get invocation => "pub upgrade [dependencies...]";
|
| String get docUrl => "http://dartlang.org/tools/pub/cmd/pub-upgrade.html";
|
| List<String> get aliases => const ["update"];
|
| - bool get takesArguments => true;
|
|
|
| - bool get isOffline => commandOptions['offline'];
|
| + bool get isOffline => argResults['offline'];
|
|
|
| UpgradeCommand() {
|
| - commandParser.addFlag('offline',
|
| + argParser.addFlag('offline',
|
| help: 'Use cached packages instead of accessing the network.');
|
|
|
| - commandParser.addFlag('dry-run', abbr: 'n', negatable: false,
|
| + argParser.addFlag('dry-run', abbr: 'n', negatable: false,
|
| help: "Report what dependencies would change but don't change any.");
|
| }
|
|
|
| - Future onRun() async {
|
| - var dryRun = commandOptions['dry-run'];
|
| + Future run() async {
|
| + var dryRun = argResults['dry-run'];
|
| await entrypoint.acquireDependencies(SolveType.UPGRADE,
|
| - useLatest: commandOptions.rest, dryRun: dryRun);
|
| + useLatest: argResults.rest, dryRun: dryRun);
|
| if (isOffline) {
|
| log.warning("Warning: Upgrading when offline may not update you to the "
|
| "latest versions of your dependencies.");
|
|
|