Skip to content

Commit

Permalink
use name instead of recipe for exclude
Browse files Browse the repository at this point in the history
  • Loading branch information
aliciaaevans committed Mar 15, 2024
1 parent 0b5aa42 commit d9a94e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bioconda_utils/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ def build_recipes(recipe_folder: str, config_path: str, recipes: List[str],
failed_uploads = []

for recipe, name in recipes:
if recipe in exclude:
if name in exclude:
continue
platform = utils.RepoData().native_platform()
if not force and do_not_consider_for_additional_platform(recipe_folder, recipe, platform):
Expand Down

0 comments on commit d9a94e0

Please sign in to comment.