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 3f0595a commit e1fa7ebCopy full SHA for e1fa7eb
Android/android.py
@@ -312,10 +312,10 @@ def clean_targets(context):
312
if context.target in {"all", "build"}:
313
clean("build")
314
315
- if context.target == "hosts":
+ if context.target in {"all", "hosts"}:
316
for host in HOSTS:
317
clean(host)
318
- elif context.target not in {"all", "build"}:
+ elif context.target != "build":
319
clean(context.target)
320
321
0 commit comments