[♻️] Jenkins 동작 로직 수정 7

This commit is contained in:
김선규 2025-05-22 09:26:03 +09:00
parent d51449aa36
commit 1f3b6b3217

4
Jenkinsfile vendored
View File

@ -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'
"""
}