Skip to content

Commit

Permalink
Merge pull request #642 from asenyaev/asen/skip_gapi
Browse files Browse the repository at this point in the history
Skip only gapi if it was not found
  • Loading branch information
asenyaev committed Mar 28, 2022
2 parents 9ad778e + cd0476f commit 0eb6c12
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -412,7 +412,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 0eb6c12

Please sign in to comment.