Skip to content

Commit 69ee9cd

Browse files
committed
Ripunzip: fix mac os and windows URLs
1 parent f1afe5c commit 69ee9cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

misc/ripunzip/ripunzip.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def _impl(repository_ctx):
1515
)
1616
elif repository_ctx.os.name == "windows":
1717
repository_ctx.download_and_extract(
18-
url = "%s/ripunzip_v%s-x86_64-pc-windows-msvc.zip" % (url_prefix, version),
18+
url = "%s/ripunzip_v%s_x86_64-pc-windows-msvc.zip" % (url_prefix, version),
1919
canonical_id = "ripunzip-windows",
2020
sha256 = repository_ctx.attr.sha256_windows,
2121
output = "bin",
@@ -33,7 +33,7 @@ def _impl(repository_ctx):
3333
else:
3434
fail("Unsupported macOS architecture: %s" % arch)
3535
repository_ctx.download_and_extract(
36-
url = "%s/ripunzip_v%s-%s.tar.gz" % (url_prefix, version, suffix),
36+
url = "%s/ripunzip_v%s_%s.tar.gz" % (url_prefix, version, suffix),
3737
sha256 = sha256,
3838
canonical_id = canonical_id,
3939
output = "bin",

0 commit comments

Comments
 (0)