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