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 70d1807 commit 0eac942Copy full SHA for 0eac942
conda_forge_admin_requests/feedstock_outputs.py
@@ -95,10 +95,10 @@ def check(request):
95
)
96
r.raise_for_status()
97
for pkg_name in pkgs:
98
- if not isinstance(pkg_name, str):
+ if not isinstance(pkg_name, str) or len(pkg_name) == 1
99
raise ValueError(
100
- f"Value for '{feedstock}' entry must be a str (output name, or a glob), "
101
- f"but you provided {pkg_name:!r}."
+ f"Value for '{feedstock}' entry must be a list of str (output name, or a glob), "
+ f"but you provided {pkg_name:!r} from {pkgs:!r}."
102
103
104
0 commit comments