mirror of
https://github.com/vale981/ray
synced 2025-03-12 22:26:39 -04:00
8 lines
No EOL
277 B
Diff
8 lines
No EOL
277 B
Diff
178c178
|
|
< bash_bin_path = repository_ctx.which("bash")
|
|
---
|
|
> bash_bin_path = repository_ctx.which("bash" if not _is_windows(repository_ctx) else "sh.exe")
|
|
348c348
|
|
< "python3",
|
|
---
|
|
> "python3" if not _is_windows(repository_ctx) else "python.exe",
|