Skip to content

Commit

Permalink
Speculative fix for Windows CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jfirebaugh committed Dec 20, 2022
1 parent ea458fb commit 071eaaa
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bazel/emscripten_toolchain/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,10 @@ emscripten_cc_toolchain_config_rule(
"@bazel_tools//src/conditions:host_windows": "bat",
"//conditions:default": "sh",
}),
node_binary = "@nodejs//:node",
node_binary = select({
"@bazel_tools//src/conditions:host_windows": "@nodejs//:node_bin",
"//conditions:default": "@nodejs//:node",
}),
)

cc_toolchain(
Expand Down

0 comments on commit 071eaaa

Please sign in to comment.