From f81199e31b8b3311aa7fc4cdb4fd1780e1fb0ea7 Mon Sep 17 00:00:00 2001 From: Adam Townsend Date: Sun, 22 Oct 2023 14:15:27 -0700 Subject: [PATCH] maybe this will clean up a few things --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 15a1c87..56d977a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,7 +11,7 @@ pipeline { rbenv local 3.2.2 echo "# frozen_string_literal: true\n" > env.rb echo "ENV['APP_SESSION_SECRET'] ||= '$(ruby -rsecurerandom -e 'puts SecureRandom.base64(64)')'" >> .env.rb - echo "ENV[\\\'DB_NAME\\\'] ||= \\\'${DB_NAME}\\\'" >> .env.rb + echo "ENV['DB_NAME'] ||= '${DB_NAME}'" >> .env.rb ''' } }