Chromium Code Reviews| Index: utils/pub/command_list.dart |
| diff --git a/utils/pub/command_list.dart b/utils/pub/command_list.dart |
| index 9de8817e91ac8d4a0c9755997bd961dc98230dc7..8a45cfcd72d6ecd22730d47da956a82317fdc66b 100644 |
| --- a/utils/pub/command_list.dart |
| +++ b/utils/pub/command_list.dart |
| @@ -13,6 +13,7 @@ class ListCommand extends PubCommand { |
| void onRun() { |
| cache.listAll().then((packages) { |
| + packages.sort((a, b) => a.name.compareTo(b.name)); |
| for (final package in packages) { |
| print(package.name); |
| } |