diff --git a/llama_stack/distribution/utils/exec.py b/llama_stack/distribution/utils/exec.py index 40dcc684a..c4a78b5ad 100644 --- a/llama_stack/distribution/utils/exec.py +++ b/llama_stack/distribution/utils/exec.py @@ -100,6 +100,7 @@ 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