From f0d2e217672ad802e36f97e8454e80e8a5444747 Mon Sep 17 00:00:00 2001 From: Artur Date: Fri, 4 Oct 2024 16:56:38 +0200 Subject: [PATCH] sh "cp ./nginx-config/** /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 1228536..2d86106 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/** /apps-data" } } }