fix issue caused by .env.example not ending with a newline (#2516)

This commit is contained in:
Asher Foa
2025-05-29 13:46:18 -04:00
committed by GitHub
parent 98f257d54e
commit ee5e375967
2 changed files with 2 additions and 1 deletions

View File

@@ -76,4 +76,4 @@ PORT=8000
ANALYTICS_ID="anonymous" ANALYTICS_ID="anonymous"
# Enable recording skyvern logs as artifacts # Enable recording skyvern logs as artifacts
ENABLE_LOG_ARTIFACTS=false ENABLE_LOG_ARTIFACTS=false

View File

@@ -230,6 +230,7 @@ initialize_env_file() {
echo "Initializing .env file..." echo "Initializing .env file..."
cp .env.example .env cp .env.example .env
echo "" >> .env
setup_llm_providers setup_llm_providers
# Ask for email or generate UUID # Ask for email or generate UUID