Skip to content

Commit 3bfadba

Browse files
committed
recipes: sort the list of recipes when displaying to the user
1 parent f6e3d75 commit 3bfadba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonforandroid/toolchain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2584,7 +2584,7 @@ def recipes(self, args):
25842584
print(" ".join(list(Recipe.list_recipes())))
25852585
else:
25862586
ctx = self.ctx
2587-
for name in Recipe.list_recipes():
2587+
for name in sorted(Recipe.list_recipes()):
25882588
recipe = Recipe.get_recipe(name, ctx)
25892589
version = str(recipe.version)
25902590
if args.color:

0 commit comments

Comments
 (0)