From ebefa253f3aad2a86e96b86914cf9951e5540a1c Mon Sep 17 00:00:00 2001 From: panzhongxian Date: Wed, 23 Sep 2020 17:57:54 +0800 Subject: [PATCH] Update index.html dependency with Bazel section. --- doc/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/index.html b/doc/index.html index d571cfa..8b6221c 100644 --- a/doc/index.html +++ b/doc/index.html @@ -156,7 +156,7 @@ add the following lines to your WORKSPACE file git_repository( name = "com_github_gflags_gflags", remote = "https://github.com/gflags/gflags.git", - tags = ["v2.2.2"] + tag = "v2.2.2" ) @@ -172,7 +172,7 @@ In order to use the single-threaded shared gflags library, use the dependency cc_binary( name = "foo", srcs = ["main.cc"], - deps = ["//external:gflags"], + deps = ["@com_github_gflags_gflags//:gflags"], )