We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc5898c commit 09d5f98Copy full SHA for 09d5f98
internal/node/node_repositories.bzl
@@ -197,7 +197,7 @@ def _prepare_node(repository_ctx):
197
"""
198
199
# TODO: Maybe we want to encode the OS as a specific attribute rather than do it based on naming?
200
- is_windows = "_windows_" in repository_ctx.attr.name
+ is_windows = is_windows_os(repository_ctx) or "_windows_" in repository_ctx.attr.name
201
if repository_ctx.attr.vendored_node:
202
node_exec = "/".join([f for f in [
203
"../../..",
0 commit comments