Fix for --incompatible_no_support_tools_in_action_inputs on Windows (#157)
Error identified with Bazel CI: https://buildkite.com/bazel/bazelisk-plus-incompatible-flags/builds/120#4bcecf1f-c7d3-4de2-ba63-1ea125faa54e
This commit is contained in:
parent
9aa308e1ef
commit
5c80706f70
|
@ -37,7 +37,8 @@ def copy_cmd(ctx, src, dst):
|
|||
is_executable = True,
|
||||
)
|
||||
ctx.actions.run(
|
||||
inputs = [src, bat],
|
||||
inputs = [src],
|
||||
tools = [bat],
|
||||
outputs = [dst],
|
||||
executable = "cmd.exe",
|
||||
arguments = ["/C", bat.path.replace("/", "\\")],
|
||||
|
|
Loading…
Reference in New Issue