We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1afe5c commit 69ee9cdCopy full SHA for 69ee9cd
1 file changed
misc/ripunzip/ripunzip.bzl
@@ -15,7 +15,7 @@ def _impl(repository_ctx):
15
)
16
elif repository_ctx.os.name == "windows":
17
repository_ctx.download_and_extract(
18
- url = "%s/ripunzip_v%s-x86_64-pc-windows-msvc.zip" % (url_prefix, version),
+ url = "%s/ripunzip_v%s_x86_64-pc-windows-msvc.zip" % (url_prefix, version),
19
canonical_id = "ripunzip-windows",
20
sha256 = repository_ctx.attr.sha256_windows,
21
output = "bin",
@@ -33,7 +33,7 @@ def _impl(repository_ctx):
33
else:
34
fail("Unsupported macOS architecture: %s" % arch)
35
36
- url = "%s/ripunzip_v%s-%s.tar.gz" % (url_prefix, version, suffix),
+ url = "%s/ripunzip_v%s_%s.tar.gz" % (url_prefix, version, suffix),
37
sha256 = sha256,
38
canonical_id = canonical_id,
39
0 commit comments