Skip to content

Commit 7edd6d7

Browse files
committed
Return if all recipes are skipped for this build
Fix conda-forge#5646
1 parent fdfe087 commit 7edd6d7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.ci_support/build_all.py

+3
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ def build_all(recipes_dir, arch):
6060

6161
print('Computed that there are {} distributions to build from {} recipes'
6262
.format(len(order), len(folders)))
63+
if not order:
64+
print('Nothing to do')
65+
return
6366
print("Resolved dependencies, will be built in the following order:")
6467
print(' '+'\n '.join(order))
6568

0 commit comments

Comments
 (0)