From 366cfd76aff6f84e3690e18ec1bcc9cf311ec561 Mon Sep 17 00:00:00 2001 From: Artur Date: Sun, 6 Oct 2024 20:36:03 +0200 Subject: [PATCH] sh "rm -f /apps-data/*.conf" --- 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 cf382e0..fd6f60d 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 "rm /apps-data/*.conf" + sh "rm -f /apps-data/*.conf" sh "cp ./nginx-config/${PROTOCOL}/* /apps-data" } }