Fixed build issue on windows: realpath command not found
This commit is contained in:
parent
50216cbe96
commit
572f537ea9
2
third_party/remote_config/common.bzl
vendored
2
third_party/remote_config/common.bzl
vendored
@ -274,7 +274,7 @@ def realpath(repository_ctx, path, bash_bin = None):
|
|||||||
if bash_bin == None:
|
if bash_bin == None:
|
||||||
bash_bin = get_bash_bin(repository_ctx)
|
bash_bin = get_bash_bin(repository_ctx)
|
||||||
|
|
||||||
return execute(repository_ctx, [bash_bin, "-c", "realpath \"%s\"" % path]).stdout.strip()
|
return execute(repository_ctx, [bash_bin, "-cl", "realpath \"%s\"" % path]).stdout.strip()
|
||||||
|
|
||||||
def err_out(result):
|
def err_out(result):
|
||||||
"""Returns stderr if set, else stdout.
|
"""Returns stderr if set, else stdout.
|
||||||
|
Loading…
Reference in New Issue
Block a user