Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Pursehouse2019-09-07 06:28:32 +0000
committerDavid Pursehouse2019-09-07 06:36:11 +0000
commite626c55936a6e5a969bb720c26db9e4434c46edc (patch)
tree0f6ca5c68d5c559816e663d2851a573924782bb9
parent4678710c6862602df1bb45ee1035705a0c6a200b (diff)
downloadjgit-e626c55936a6e5a969bb720c26db9e4434c46edc.tar.gz
jgit-e626c55936a6e5a969bb720c26db9e4434c46edc.tar.xz
jgit-e626c55936a6e5a969bb720c26db9e4434c46edc.zip
Bazel: Fix warning about deprecated lib.bzl
Change-Id: Ifdbaaf9ec020a621070eea351f791a819d554012 Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
-rw-r--r--WORKSPACE2
1 files changed, 1 insertions, 1 deletions
diff --git a/WORKSPACE b/WORKSPACE
index 0d5caa8c9c..de7e530812 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -9,7 +9,7 @@ http_archive(
urls = ["https://github.com/bazelbuild/bazel-skylib/archive/0.8.0.tar.gz"],
)
-load("@bazel_skylib//:lib.bzl", "versions")
+load("@bazel_skylib//lib:versions.bzl", "versions")
versions.check(minimum_bazel_version = "0.29.0")

Back to the top