| Index: utils/pub/command_update.dart
|
| diff --git a/utils/pub/command_update.dart b/utils/pub/command_update.dart
|
| index daedfb6a19d715ecda949c74d89b30140868713b..16155e2bf9940e5d44bb0340953f1aa3fbc144ac 100644
|
| --- a/utils/pub/command_update.dart
|
| +++ b/utils/pub/command_update.dart
|
| @@ -5,7 +5,6 @@
|
| library command_update;
|
|
|
| import 'entrypoint.dart';
|
| -import 'log.dart' as log;
|
| import 'pub.dart';
|
|
|
| /** Handles the `update` pub command. */
|
| @@ -22,6 +21,6 @@ class UpdateCommand extends PubCommand {
|
| } else {
|
| future = entrypoint.updateDependencies(commandOptions.rest);
|
| }
|
| - return future.transform((_) => log.message("Dependencies updated!"));
|
| + return future.transform((_) => print("Dependencies updated!"));
|
| }
|
| }
|
|
|