show stdout
All checks were successful
Deploy Containers / Prepare (push) Successful in 4s

This commit is contained in:
2025-11-21 21:47:22 -05:00
parent 023b48ace0
commit 078cb8edff

View File

@@ -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