Skip to content

Commit

Permalink
fix(compiler): prepare for future Bazel semantics of += (#19717)
Browse files Browse the repository at this point in the history
This is a local mod that was already applied in G3.

PR Close #19717
  • Loading branch information
vikerman authored and tbosch committed Oct 13, 2017
1 parent 43f9d91 commit 836c889
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/bazel/src/ng_module.bzl
Expand Up @@ -115,7 +115,7 @@ def ngc_compile_action(ctx, label, inputs, outputs, messages_out, config_file_pa
else:
supports_workers = str(int(ctx.attr._supports_workers))

arguments = _EXTRA_NODE_OPTIONS_FLAGS
arguments = list(_EXTRA_NODE_OPTIONS_FLAGS)
# One at-sign makes this a params-file, enabling the worker strategy.
# Two at-signs escapes the argument so it's passed through to ngc
# rather than the contents getting expanded.
Expand Down Expand Up @@ -247,4 +247,4 @@ ng_module = rule(
),
},
outputs = COMMON_OUTPUTS,
)
)

0 comments on commit 836c889

Please sign in to comment.