From d9f605d7dbac105d1c4d62d254f568ac04b31100 Mon Sep 17 00:00:00 2001 From: Manraj Date: Sat, 11 Mar 2023 01:50:45 -0500 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7052d54..0884caa 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,7 +7,7 @@ pipeline { // Stop running microblog container (microblog label applied to microblog container by this repo's Dockerfile) sh 'docker stop $(docker ps -q --filter name=microblog) || true && docker rm $(docker ps -q --filter name=microblog) || true' withCredentials([file(credentialsId: twilio-creds, variable: 'env')]) { - writeFile file: '.env', text: readFile(env) + sh "cp \$env /.env" } } }