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