From 7bc1a852db21bf56e7c1120af65027da733ea041 Mon Sep 17 00:00:00 2001 From: Adam Townsend Date: Tue, 17 Oct 2023 21:36:56 -0700 Subject: [PATCH] swap quotes on the db name --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3985cef..5a840dc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { sh ''' #!/usr/local/bin/bash rbenv local 3.2.2 echo "ENV[\\\"APP_SESSION_SECRET\\\"] ||= $(ruby -rsecurerandom -e 'puts SecureRandom.base64(64).inspect()')" > .env.rb - echo 'ENV["DB_NAME"] ||= "${env.DB_NAME}"' >> .env.rb + echo "ENV["DB_NAME"] ||= '${env.DB_NAME}'" >> .env.rb ''' } }