aboutsummaryrefslogtreecommitdiff
path: root/go/def.bzl
diff options
context:
space:
mode:
authorLaurent Le Brun <laurentlb@gmail.com>2018-11-27 19:39:10 +0100
committerGitHub <noreply@github.com>2018-11-27 19:39:10 +0100
commit3f51f3f2aa5eabef9844e43a06f91df270ec7779 (patch)
treebdb5229d3a6b4f38a129ef9dde074f98b89fa309 /go/def.bzl
parent62cbd7566416b7ef10ea8020e73cb58b5a2da58c (diff)
downloadbazelbuild-rules_go-3f51f3f2aa5eabef9844e43a06f91df270ec7779.tar.gz
Fix for remaining Bazel incompatible changes (#1834)
- Update proto version - Update Gazelle version - Fix a remaining issue Tested: bazel test //... --all_incompatible_changes Fixes #1829
Diffstat (limited to 'go/def.bzl')
-rw-r--r--go/def.bzl3
1 files changed, 2 insertions, 1 deletions
diff --git a/go/def.bzl b/go/def.bzl
index a3ad5eee..cffa7b63 100644
--- a/go/def.bzl
+++ b/go/def.bzl
@@ -42,7 +42,7 @@ load(
)
load(
"@io_bazel_rules_go//go/private:rules/sdk.bzl",
- "go_sdk",
+ _go_sdk = "go_sdk",
)
load(
"@io_bazel_rules_go//go/private:go_toolchain.bzl",
@@ -93,6 +93,7 @@ go_register_toolchains = _go_register_toolchains
go_tool_library = _go_tool_library
nogo = _nogo
go_embed_data = _go_embed_data
+go_sdk = _go_sdk
GoLibrary = _GoLibrary
"""See go/providers.rst#GoLibrary for full documentation."""