Skip to content

Commit

Permalink
Merge pull request #250 from Zetten/fix-windows-path-separator
Browse files Browse the repository at this point in the history
Fix java path separator bug on Windows
  • Loading branch information
rmichela authored Aug 9, 2021
2 parents 79548f7 + 039ba5e commit 071f153
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bazel/java_reactive_grpc_library.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def _reactive_grpc_library_impl(ctx):
args = ctx.actions.args()
args.add(ctx.executable.reactive_plugin.path, format = "--plugin=protoc-gen-reactive-grpc-plugin=%s")
args.add("--reactive-grpc-plugin_out=:{0}".format(gensrcjar.path))
args.add_joined("--descriptor_set_in", descriptor_set_in, join_with = ":")
args.add_joined("--descriptor_set_in", descriptor_set_in, join_with = ctx.host_configuration.host_path_separator)
for src in proto.check_deps_sources.to_list():
args.add(_proto_path(src, proto))

Expand Down

0 comments on commit 071f153

Please sign in to comment.