We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b5c2b7 commit 759634eCopy full SHA for 759634e
1 file changed
mojo/extensions.bzl
@@ -27,7 +27,7 @@ _NULL_SHAS = {
27
28
def _mojo_toolchain_impl(rctx):
29
for whl in "mojo_compiler", "mojo_compiler_mojo_libs":
30
- base_url = (rctx.attr.base_url or "https://whl.modular.com/nightly/") + whl.replace("_", "-")
+ base_url = (rctx.attr.base_url or "https://whl.modular.com/nightly") + "/" + whl.replace("_", "-")
31
platform = _PLATFORM_MAPPINGS[rctx.attr.platform] if whl == "mojo_compiler" else "any"
32
sha_key = rctx.attr.platform if whl == "mojo_compiler" else "mojo_compiler_mojo_libs"
33
rctx.download_and_extract(
0 commit comments