| Index: sdk/lib/_internal/pub/lib/src/command/update.dart
|
| diff --git a/sdk/lib/_internal/pub/lib/src/command_update.dart b/sdk/lib/_internal/pub/lib/src/command/update.dart
|
| similarity index 91%
|
| rename from sdk/lib/_internal/pub/lib/src/command_update.dart
|
| rename to sdk/lib/_internal/pub/lib/src/command/update.dart
|
| index 3db7ba848953140873953c5ed8a5a1bbbe5e40be..e47c80b0bc6438af83c77fc786e0b27af9659813 100644
|
| --- a/sdk/lib/_internal/pub/lib/src/command_update.dart
|
| +++ b/sdk/lib/_internal/pub/lib/src/command/update.dart
|
| @@ -2,15 +2,15 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -library command_update;
|
| +library pub.command.update;
|
|
|
| import 'dart:async';
|
|
|
| import 'package:args/args.dart';
|
|
|
| -import 'command.dart';
|
| -import 'entrypoint.dart';
|
| -import 'log.dart' as log;
|
| +import '../command.dart';
|
| +import '../entrypoint.dart';
|
| +import '../log.dart' as log;
|
|
|
| /// Handles the `update` pub command.
|
| class UpdateCommand extends PubCommand {
|
|
|