From 43c49c493b2ecbf585f27943a95e230dd2490ee6 Mon Sep 17 00:00:00 2001 From: Mo8it Date: Thu, 18 Aug 2022 03:58:40 +0200 Subject: [PATCH] Better showing of running commands --- podman/deploy.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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