From 9553af1813890da29f39fc823c105c14a0edda5e Mon Sep 17 00:00:00 2001 From: Artur Date: Thu, 3 Oct 2024 19:10:43 +0200 Subject: [PATCH] sh "cp ./nginx-config/http/* /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 a5d1f44..1228536 100755 --- a/deploy-this/start-proxy.jenkinsfile +++ b/deploy-this/start-proxy.jenkinsfile @@ -7,7 +7,7 @@ pipeline { script{ def nxinx_build ="docker compose --file deploy-this/deploy-dc.yml up --detach " sh(nxinx_build); - sh "cp ./nginx-config/http /apps-data" + sh "cp ./nginx-config/http/* /apps-data" } } }