Skip to content

Commit

Permalink
Fix bug with should_generate_soy_msg_defs (#154)
Browse files Browse the repository at this point in the history
Fixes: unsupported operand type(s) for +: 'list' and 'string'.
  • Loading branch information
gramic authored and jart committed Oct 13, 2016
1 parent b3e5ea8 commit c37dc23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion closure/templates/closure_js_template_library.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def _impl(ctx):
if ctx.attr.should_provide_require_soy_namespaces:
args += ["--shouldProvideRequireSoyNamespaces"]
if ctx.attr.should_generate_soy_msg_defs:
args += "--shouldGenerateGoogMsgDefs"
args += ["--shouldGenerateGoogMsgDefs"]
if ctx.attr.plugin_modules:
args += ["--pluginModules=%s" % ",".join(ctx.attr.plugin_modules)]
args += [src.path for src in ctx.files.srcs]
Expand Down

0 comments on commit c37dc23

Please sign in to comment.