Skip to content

Commit

Permalink
Changed the prints to be more clear about the outcome of the script run.
Browse files Browse the repository at this point in the history
  • Loading branch information
Noctunus committed Sep 19, 2024
1 parent 7b30d6f commit 8c4d982
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions scripts/dependency_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,6 @@ def default_run():
class Colors:
RESET = '\033[0m'
BOLD = '\033[1m'
BLACK = '\033[30m'
BLUE = '\033[34m'
PURPLE = '\033[35m'
GREEN = '\033[32m'

Expand Down Expand Up @@ -241,8 +239,12 @@ def print_dependency_graph(dep_dict):
if global_error:
print("⌛ Dependency fix needs another iteration to fix new broken dependencies ... ")
else:
print("✅ Dependency fix might have succeeded. Please check the results!")
print("✅ Dependency fix might have succeeded. Please check the results (and don't forget to add the new directories/files)!")
break


if global_error == True:
print("❌ [FAIL] Something went wrong while doing the dependency check (or fix) please see above!")
sys.exit(1)
else:
print("✅ [PASS] Dependency check/fix successful!")

0 comments on commit 8c4d982

Please sign in to comment.