Skip to content
Snippets Groups Projects
Commit 2e57d616 authored by Amir MOHAMMADI's avatar Amir MOHAMMADI
Browse files

Fix broken code due to API change in get_channels

parent 22554a3f
No related branches found
No related tags found
No related merge requests found
Pipeline #44237 passed
......@@ -508,7 +508,8 @@ if __name__ == "__main__":
run_cmdline([conda_bin, "index", conda_bld_path])
channels, _ = get_channels(
public=True, stable=True, server=_SERVER, intranet=True, group="bob"
) + ["defaults"]
)
channels += ["defaults"]
channels = (
["--override-channels"]
+ ["--channel=" + conda_bld_path]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment