2022-04-22 19:15:15 -07:00
|
|
|
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",
|