We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f94498 commit aacc461Copy full SHA for aacc461
pythonforandroid/toolchain.py
@@ -508,7 +508,10 @@ def recipes(self, args):
508
print(" ".join(set(Recipe.list_recipes(ctx))))
509
else:
510
for name in sorted(Recipe.list_recipes(ctx)):
511
- recipe = Recipe.get_recipe(name, ctx)
+ try:
512
+ recipe = Recipe.get_recipe(name, ctx)
513
+ except IOError:
514
+ warning('Recipe "{}" could not be loaded'.format(name))
515
version = str(recipe.version)
516
print('{Fore.BLUE}{Style.BRIGHT}{recipe.name:<12} '
517
'{Style.RESET_ALL}{Fore.LIGHTBLUE_EX}'
0 commit comments