Skip to content

Commit

Permalink
print or not to print.
Browse files Browse the repository at this point in the history
  • Loading branch information
martinzak-zaber committed Dec 10, 2024
1 parent 6d2a7a3 commit d0c69f6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tools/check_examples/src/check_examples/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ def get_git_root_directory() -> Path:
check=True,
)
directory = Path(result.stdout.strip())
print(f"Git root directory: {directory}")
iprint_pass("Found git root directory.", 0)
sys.exit(1)
if not directory.exists() or not directory.is_dir():
iprint_fail("Unable to find git root directory.", 0)
sys.exit(1)
Expand Down

0 comments on commit d0c69f6

Please sign in to comment.