bazel: Fix `incompatible_disable_starlark_host_transitions` (#394)
diff --git a/bazel/expanded_template/expanded_template.bzl b/bazel/expanded_template/expanded_template.bzl
index ac17f59..a903a1e 100644
--- a/bazel/expanded_template/expanded_template.bzl
+++ b/bazel/expanded_template/expanded_template.bzl
@@ -2,7 +2,7 @@
args = ctx.actions.args()
args.add("--template", ctx.file.template)
args.add("--output", ctx.outputs.out)
- args.add_all([k + ';' + v for k, v in ctx.attr.substitutions.items()])
+ args.add_all([k + ";" + v for k, v in ctx.attr.substitutions.items()])
ctx.actions.run(
executable = ctx.executable._bin,
arguments = [args],
@@ -29,7 +29,7 @@
default = "//bazel/expanded_template:expand_template",
executable = True,
allow_single_file = True,
- cfg = "host",
+ cfg = "exec",
),
},
)