Skip to content

Commit 83fdc76

Browse files
committed
Skip only gapi if it was not found
1 parent 7a76aee commit 83fdc76

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,8 @@ def _classify_installed_files_override(
395395
final_install_relpaths.append(new_install_relpath)
396396
del m, fslash_relpath, new_install_relpath
397397
else:
398-
if not found:
398+
# gapi can be missed if ADE was not downloaded (network issue)
399+
if not found and "gapi" not in relpath_re:
399400
raise Exception("Not found: '%s'" % relpath_re)
400401
del r, found
401402

0 commit comments

Comments
 (0)