We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a1a524 commit 627830eCopy full SHA for 627830e
python/private/repo_utils.bzl
@@ -160,8 +160,13 @@ def _which_checked(rctx, binary_name):
160
"""
161
binary = rctx.which(binary_name)
162
if binary == None:
163
- fail(("Unable to find the binary '{binary_name}' on PATH.\n" +
164
- " PATH = {path}".format(rctx.os.environ.get("PATH"))))
+ fail((
+ "Unable to find the binary '{binary_name}' on PATH.\n" +
165
+ " PATH = {path}"
166
+ ).format(
167
+ binary_name = binary_name,
168
+ path = rctx.os.environ.get("PATH"),
169
+ ))
170
return binary
171
172
def _args_to_str(arguments):
0 commit comments