We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6861a38 commit f0228e4Copy full SHA for f0228e4
cibuildwheel/util.py
@@ -130,7 +130,11 @@ def call(
130
# workaround platform behaviour differences outlined
131
# in https://github.com/python/cpython/issues/52803
132
path = env.get("PATH", None) if env is not None else None
133
- args_[0] = shutil.which(args_[0], path=path) or args_[0]
+ executable = shutil.which(args_[0], path=path)
134
+ if executable is None:
135
+ msg = f"Couldn't find {args_[0]!r} in PATH {path!r}"
136
+ raise LookupError(msg)
137
+ args_[0] = executable
138
try:
139
result = subprocess.run(
140
args_,
0 commit comments