Skip to content

Commit

Permalink
Merge pull request #42 from Chaste/relax-includes
Browse files Browse the repository at this point in the history
#41 warning if include dir doesn't exist
  • Loading branch information
kwabenantim authored Jun 10, 2024
2 parents dfa8ee7 + 2edc576 commit 26a4074
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cppwg/generators.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,9 @@ def __init__(

for include_path in self.source_includes:
if not os.path.isdir(include_path):
logger.error(
logger.warning(
f"Could not find source include directory: {include_path}"
)
raise FileNotFoundError()
else:
self.source_includes = [self.source_root]

Expand Down

0 comments on commit 26a4074

Please sign in to comment.