From 47486887b2c52f0433729e0120aaffe6008d008d Mon Sep 17 00:00:00 2001 From: Cauhx Milloy Date: Sun, 12 May 2024 00:07:07 -0700 Subject: [PATCH] Fixing `bazel_skylib` URL * Adding missing `/` in the URL for downloading `bazel_skylib`. --- WORKSPACE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WORKSPACE b/WORKSPACE index ca71845..9ad3d0c 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -30,6 +30,6 @@ http_archive( sha256 = BAZEL_SKYLIB_SHA256, strip_prefix = "bazel-skylib-{0}".format(BAZEL_SKYLIB_VERSION), urls = [ - "https://github.com/bazelbuild/bazel-skylib/archive/refs/tags{0}.tar.gz".format(BAZEL_SKYLIB_VERSION), + "https://github.com/bazelbuild/bazel-skylib/archive/refs/tags/{0}.tar.gz".format(BAZEL_SKYLIB_VERSION), ], )