Skip to content

Commit d387d33

Browse files
committed
fix broken secondary URL in Update WORKSPACE
This PR removes the invalid secondary mirror URL for the bazel-skylib v1.3.0 archive in the WORKSPACE file. What was changed: Removed the incorrect link: https://github.com/bazelbuild/bazel-skylib/releases/download/1.1.1/bazel-skylib-1.3.0.tar.gz which pointed to version 1.3.0 under the wrong tag (1.1.1), resulting in a 404 error. Reason: The second URL was malformed and caused Bazel to fail when trying to fetch the dependency via fallback. Testing: Confirmed the updated URLs download successfully. Verified bazel sync works without errors.
1 parent f4ae83a commit d387d33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

WORKSPACE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ http_archive(
88
sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506",
99
urls = [
1010
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
11-
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.1.1/bazel-skylib-1.3.0.tar.gz",
11+
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
1212
],
1313
)
1414

0 commit comments

Comments
 (0)