Skip to content

Commit

Permalink
Make bzl files compatible with the upcoming change of += semantics on…
Browse files Browse the repository at this point in the history
… lists (#135)
  • Loading branch information
vladmos authored and pcj committed Sep 27, 2017
1 parent 183ab18 commit 4cc90ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions go/rules.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ def go_proto_library(

if not go_proto_deps:
if with_grpc:
go_proto_deps += GRPC_COMPILE_DEPS
go_proto_deps = GRPC_COMPILE_DEPS
else:
go_proto_deps += PB_COMPILE_DEPS
go_proto_deps = PB_COMPILE_DEPS

if importpath:
go_prefix = None
Expand Down

0 comments on commit 4cc90ab

Please sign in to comment.