8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 275995e commit 8029ddbCopy full SHA for 8029ddb
defs.bzl
@@ -22,7 +22,8 @@ def _pip_repository_impl(rctx):
22
rctx.path(Label("@" + repo + "//:BUILD.bazel")).dirname
23
for repo in all_requirements
24
]
25
- pypath = ":".join([str(p) for p in [rules_root] + thirdparty_roots])
+ separator = ":" if not "windows" in rctx.os.name.lower() else ";"
26
+ pypath = separator.join([str(p) for p in [rules_root] + thirdparty_roots])
27
28
args = [
29
python_interpreter,
0 commit comments