From 69f7982170199d78570e6f0c1551abe6373e7f87 Mon Sep 17 00:00:00 2001 From: Isuru Fernando Date: Sat, 7 Oct 2023 13:14:46 -0500 Subject: [PATCH] fix typo --- conda_build/metadata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conda_build/metadata.py b/conda_build/metadata.py index f00731f2eb..ba59ad7a6f 100644 --- a/conda_build/metadata.py +++ b/conda_build/metadata.py @@ -132,7 +132,7 @@ def get_selectors(config: Config) -> dict[str, bool]: nomkl=bool(int(os.environ.get("FEATURE_NOMKL", False))), ) - subdirs = [subdir for subdir in DEFAULT_SUBDIRS if "-" not in subdir] + subdirs = [subdir for subdir in DEFAULT_SUBDIRS if "-" in subdir] # Add the current platform to the list as well to enable conda-build # to bootstrap new platforms without a new conda release. subdirs.append(plat)