We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d33ff8e commit 03e945eCopy full SHA for 03e945e
kotlin/rules.bzl
@@ -14,9 +14,9 @@ def _kotlin_library_impl(ctx):
14
args += ["-X%s" % opt for opt in ctx.attr.x_opts]
15
16
# Plugin options
17
- for k, v in ctx.attr.plugin_opts:
+ for k, v in ctx.attr.plugin_opts.items():
18
args += ["-P"]
19
- args += ["plugin:%s:%s" % (k, v)]
+ args += ["plugin:%s=\"%s\"" % (k, v)]
20
21
# Make classpath if needed, first from this rules, then from
22
# dependent rules.
0 commit comments