Skip to content

Commit

Permalink
fix broken URL for platforms repo version 0.0.9 (#2452)
Browse files Browse the repository at this point in the history
Was noticing these warnings lately, since this URL update wasn't quite
complete:
```
WARNING: Download from https://mirror.bazel.build/github.com/bazelbuild/platforms/releases/download/0.0.9/platforms-0.0.7.tar.gz failed: class java.io.FileNotFoundException GET returned 404 Not Found
```
  • Loading branch information
timsutton authored Apr 22, 2024
1 parent d4b6341 commit 6e35742
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apple/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def apple_rules_dependencies(ignore_version_differences = False, include_bzlmod_
http_archive,
name = "platforms",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/platforms/releases/download/0.0.9/platforms-0.0.7.tar.gz",
"https://mirror.bazel.build/github.com/bazelbuild/platforms/releases/download/0.0.9/platforms-0.0.9.tar.gz",
"https://github.com/bazelbuild/platforms/releases/download/0.0.9/platforms-0.0.9.tar.gz",
],
sha256 = "5eda539c841265031c2f82d8ae7a3a6490bd62176e0c038fc469eabf91f6149b",
Expand Down

0 comments on commit 6e35742

Please sign in to comment.