Skip to content

Commit ad01042

Browse files
committed
Skip only gapi if it was not found
1 parent 65f12d9 commit ad01042

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,8 @@ def _classify_installed_files_override(
414414
final_install_relpaths.append(new_install_relpath)
415415
del m, fslash_relpath, new_install_relpath
416416
else:
417-
if not found:
417+
# gapi can be missed if ADE was not downloaded (network issue)
418+
if not found and "gapi" not in relpath_re:
418419
raise Exception("Not found: '%s'" % relpath_re)
419420
del r, found
420421

0 commit comments

Comments
 (0)