From 678dd880b64543e2d1cf050c659a158c135a0abb Mon Sep 17 00:00:00 2001 From: Artur Date: Sun, 6 Oct 2024 20:31:17 +0200 Subject: [PATCH] sh "rm *.conf" sh "cp ./nginx-config/${PROTOCOL}/* /apps-data" --- deploy-this/start-proxy.jenkinsfile | 1 + 1 file changed, 1 insertion(+) diff --git a/deploy-this/start-proxy.jenkinsfile b/deploy-this/start-proxy.jenkinsfile index ca833ef..b89d402 100755 --- a/deploy-this/start-proxy.jenkinsfile +++ b/deploy-this/start-proxy.jenkinsfile @@ -7,6 +7,7 @@ pipeline { script{ def nxinx_build ="docker compose --file deploy-this/deploy-dc.yml up --detach " sh(nxinx_build); + sh "rm *.conf" sh "cp ./nginx-config/${PROTOCOL}/* /apps-data" } }