Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

[bazel] Fix Bazel 1.0.0 incompatibility issue #803

Merged
merged 1 commit into from Oct 11, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion repository_rules.bzl
Expand Up @@ -40,7 +40,7 @@ def _com_google_api_gax_java_properties_impl(ctx):
p = prop.strip()
if len(p) <= 0 or p.startswith("#"):
continue
key_value = p.split("=", maxsplit = 1)
key_value = p.split("=", 1)
props_as_map[key_value[0]] = key_value[1]

props_name = ctx.attr.file.name
Expand Down