From 6c40ae63115cba0f0a8e1679f2ba0627cca92701 Mon Sep 17 00:00:00 2001 From: Adam Townsend Date: Fri, 6 Oct 2023 13:47:11 -0700 Subject: [PATCH] syntax error in Jenkinsfile, missing " at the end of the line to add to the env file --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index d615d2b..acee9fa 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,7 +5,7 @@ pipeline { stage('Init') { steps { sh 'rbenv local 3.2.2' - sh 'echo "ENV[\"DB_NAME\"] ||= \"url_shortener.db\" >> .env.rb' + sh 'echo "ENV[\"DB_NAME\"] ||= \"url_shortener.db\"" >> .env.rb' } } }