Skip to content

Commit

Permalink
Skip only gapi if it was not found
Browse files Browse the repository at this point in the history
  • Loading branch information
asenyaev committed Mar 25, 2022
1 parent 65f12d9 commit ad01042
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -414,7 +414,8 @@ def _classify_installed_files_override(
final_install_relpaths.append(new_install_relpath)
del m, fslash_relpath, new_install_relpath
else:
if not found:
# gapi can be missed if ADE was not downloaded (network issue)
if not found and "gapi" not in relpath_re:
raise Exception("Not found: '%s'" % relpath_re)
del r, found

Expand Down

0 comments on commit ad01042

Please sign in to comment.