Skip to content

Commit f0228e4

Browse files
committed
debug
1 parent 6861a38 commit f0228e4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

cibuildwheel/util.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,11 @@ def call(
130130
# workaround platform behaviour differences outlined
131131
# in https://github.com/python/cpython/issues/52803
132132
path = env.get("PATH", None) if env is not None else None
133-
args_[0] = shutil.which(args_[0], path=path) or args_[0]
133+
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
134138
try:
135139
result = subprocess.run(
136140
args_,

0 commit comments

Comments
 (0)