From b0f8b337888fb7c0aec0e4b911e0af09933d8ba9 Mon Sep 17 00:00:00 2001 From: Yuan Tang Date: Tue, 31 Dec 2024 23:30:49 -0500 Subject: [PATCH] Add missing newlines before printing the Dockerfile content Signed-off-by: Yuan Tang --- llama_stack/distribution/build_container.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama_stack/distribution/build_container.sh b/llama_stack/distribution/build_container.sh index a9aee8f14..49e65b8cb 100755 --- a/llama_stack/distribution/build_container.sh +++ b/llama_stack/distribution/build_container.sh @@ -126,7 +126,7 @@ ENTRYPOINT ["python", "-m", "llama_stack.distribution.server.server", "--templat EOF -printf "Dockerfile created successfully in $TEMP_DIR/Dockerfile" +printf "Dockerfile created successfully in $TEMP_DIR/Dockerfile\n\n" cat $TEMP_DIR/Dockerfile printf "\n"