diff --git a/cli/deploy.py b/cli/deploy.py index a6172403..729e91d7 100644 --- a/cli/deploy.py +++ b/cli/deploy.py @@ -120,12 +120,7 @@ def run_ansible_playbook( print("\nšŸš€ Launching Ansible Playbook...\n") # Capture output so the real Ansible error is visible before exit - result = subprocess.run(cmd, text=True, capture_output=True) - - if result.stdout: - print(result.stdout, end="") - if result.stderr: - print(result.stderr, file=sys.stderr, end="") + result = subprocess.run(cmd) if result.returncode != 0: print(