From 078cb8edff613930116e3ee9182db2877011e34d Mon Sep 17 00:00:00 2001 From: Alex Frantz Date: Fri, 21 Nov 2025 21:47:22 -0500 Subject: [PATCH] show stdout --- scripts/deploy_containers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/deploy_containers.py b/scripts/deploy_containers.py index 4ad917d..952d6be 100644 --- a/scripts/deploy_containers.py +++ b/scripts/deploy_containers.py @@ -24,7 +24,7 @@ def deploy(tag = None, host = None): print(f"[MAIN] Deploying {tag}...") else: print(f"[MAIN] Deploying host {host}...") - res = subprocess.run(command, shell=True, stdout=subprocess.DEVNULL) + res = subprocess.run(command, shell=True) return res.returncode == 0