diff --git a/src/Command.py b/src/Command.py index 9d8a74e..1a16a02 100644 --- a/src/Command.py +++ b/src/Command.py @@ -1,5 +1,7 @@ import os import sys - +from Log import ShColors def exec(command): + print(ShColors.OKGREEN) os.system(f"{command}") + print(ShColors.ENDC)