From 3097872fd94e4f391cfc990976b411afb7141253 Mon Sep 17 00:00:00 2001 From: Xi Yan Date: Tue, 14 Jan 2025 16:34:05 -0800 Subject: [PATCH] remove prints --- llama_stack/distribution/utils/exec.py | 1 - 1 file changed, 1 deletion(-) diff --git a/llama_stack/distribution/utils/exec.py b/llama_stack/distribution/utils/exec.py index 52a4fce20..9b4d0acee 100644 --- a/llama_stack/distribution/utils/exec.py +++ b/llama_stack/distribution/utils/exec.py @@ -99,7 +99,6 @@ def run_with_pty(command): def run_command(command): try: - print("Running command:", command) result = subprocess.run(command, capture_output=True, text=True, check=True) print("Script Output\n", result.stdout) return result.returncode