ray/thirdparty/patches/grpc-python.patch

8 lines
277 B
Diff
Raw Normal View History

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",