From 1f3b6b3217bcc1e089340021fff840f5a0ce41b3 Mon Sep 17 00:00:00 2001 From: "Seonkyu.kim" Date: Thu, 22 May 2025 09:26:03 +0900 Subject: [PATCH] =?UTF-8?q?[=E2=99=BB=EF=B8=8F]=20Jenkins=20=EB=8F=99?= =?UTF-8?q?=EC=9E=91=20=EB=A1=9C=EC=A7=81=20=EC=88=98=EC=A0=95=207?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 221838e..e84da2d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -12,10 +12,10 @@ pipeline { sh """ echo 'Clearing Front directory' docker run --rm -v /volume1/AcaMate/PROJECT/Application/Front:/front alpine \ - find /aca/front/ -mindepth 1 -maxdepth 1 \\ + sh -c "find /front -mindepth 1 -maxdepth 1 \\ ! -name 'privacy' \\ ! -name 'publish' \\ - -exec rm -rf {} + + -exec rm -rf {} +" echo 'Clean complete' """ }