| Index: sdk/lib/_internal/pub/lib/src/command/cache.dart
|
| diff --git a/sdk/lib/_internal/pub/lib/src/command_cache.dart b/sdk/lib/_internal/pub/lib/src/command/cache.dart
|
| similarity index 91%
|
| rename from sdk/lib/_internal/pub/lib/src/command_cache.dart
|
| rename to sdk/lib/_internal/pub/lib/src/command/cache.dart
|
| index 9beb6110bd9542e065c0a983d647509d54dd3def..b33a04591222f0bd027d370c3f39b24491543cd6 100644
|
| --- a/sdk/lib/_internal/pub/lib/src/command_cache.dart
|
| +++ b/sdk/lib/_internal/pub/lib/src/command/cache.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_cache;
|
| +library pub.command.cache;
|
|
|
| import 'dart:async';
|
| import 'dart:io';
|
| import 'dart:json' as json;
|
|
|
| -import 'command.dart';
|
| -import 'exit_codes.dart' as exit_codes;
|
| -import 'log.dart' as log;
|
| +import '../command.dart';
|
| +import '../exit_codes.dart' as exit_codes;
|
| +import '../log.dart' as log;
|
|
|
| /// Handles the `cache` pub command.
|
| class CacheCommand extends PubCommand {
|
|
|