From ee5e3759670a04d8ae0306f0b04363528451a577 Mon Sep 17 00:00:00 2001 From: Asher Foa Date: Thu, 29 May 2025 13:46:18 -0400 Subject: [PATCH] fix issue caused by .env.example not ending with a newline (#2516) --- .env.example | 2 +- setup.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.env.example b/.env.example index c9867fe4..3706c242 100644 --- a/.env.example +++ b/.env.example @@ -76,4 +76,4 @@ PORT=8000 ANALYTICS_ID="anonymous" # Enable recording skyvern logs as artifacts -ENABLE_LOG_ARTIFACTS=false \ No newline at end of file +ENABLE_LOG_ARTIFACTS=false diff --git a/setup.sh b/setup.sh index 1f3da1c6..94fde7d0 100755 --- a/setup.sh +++ b/setup.sh @@ -230,6 +230,7 @@ initialize_env_file() { echo "Initializing .env file..." cp .env.example .env + echo "" >> .env setup_llm_providers # Ask for email or generate UUID