Escape captured Windows' where.exe
output.
This is in preparation of upgrading to bazel 4.0, which flipped `--incompatible_restrict_string_escapes`. PiperOrigin-RevId: 353656022 Change-Id: Ide31ead6e968c94f3d6106a78ebc1b6b00746eab
This commit is contained in:
parent
03c97a204f
commit
a054a5a7ad
10
third_party/remote_config/common.bzl
vendored
10
third_party/remote_config/common.bzl
vendored
@ -24,10 +24,12 @@ def which(repository_ctx, program_name):
|
|||||||
if is_windows(repository_ctx):
|
if is_windows(repository_ctx):
|
||||||
if not program_name.endswith(".exe"):
|
if not program_name.endswith(".exe"):
|
||||||
program_name = program_name + ".exe"
|
program_name = program_name + ".exe"
|
||||||
result = execute(repository_ctx, ["C:\\Windows\\System32\\where.exe", program_name])
|
return execute(
|
||||||
else:
|
repository_ctx,
|
||||||
result = execute(repository_ctx, ["which", program_name])
|
["C:\\Windows\\System32\\where.exe", program_name],
|
||||||
return result.stdout.rstrip()
|
).stdout.replace("\\", "\\\\").rstrip()
|
||||||
|
|
||||||
|
return execute(repository_ctx, ["which", program_name]).stdout.rstrip()
|
||||||
|
|
||||||
def get_python_bin(repository_ctx):
|
def get_python_bin(repository_ctx):
|
||||||
"""Gets the python bin path.
|
"""Gets the python bin path.
|
||||||
|
Loading…
Reference in New Issue
Block a user