diff --git a/podman/deploy.py b/podman/deploy.py index f7a83e3..d71822e 100755 --- a/podman/deploy.py +++ b/podman/deploy.py @@ -61,9 +61,8 @@ args = parser.parse_args() def run(command: str, **kwargs): - if args.verbose: - print("Running command:") - print(f"\t{command}") + print("\n\nRunning command:") + print(f"\t{command}\n") return subprocess.run(command, shell=True, **kwargs) # nosec B602