| Index: utils/pub/command_update.dart
|
| diff --git a/utils/pub/command_update.dart b/utils/pub/command_update.dart
|
| index 76863130f156b5b5928fb2daf8a86eade533666f..b5386eb4df1ad7216294b30590818d775c07486a 100644
|
| --- a/utils/pub/command_update.dart
|
| +++ b/utils/pub/command_update.dart
|
| @@ -2,10 +2,18 @@
|
| // 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');
|
| +
|
| +#import('pub.dart');
|
| +
|
| /** Handles the `update` pub command. */
|
| // TODO(nweiz): Make update do something different than install when we have
|
| // sources for which that makes sense.
|
| -class UpdateCommand extends InstallCommand {
|
| +class UpdateCommand extends PubCommand {
|
| String get description() =>
|
| "update the current package's dependencies to the latest versions";
|
| +
|
| + Future onRun() {
|
| + print("Not implemented.");
|
| + }
|
| }
|
|
|