From 52c46974f0138ff38d456fb22d7065a7c54097cc Mon Sep 17 00:00:00 2001 From: Van Leemput Dayron Date: Fri, 13 Feb 2026 14:24:25 +0100 Subject: [PATCH] fix: Update frontend deployment command to use correct copy syntax --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f6c6265..0437a08 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -27,7 +27,7 @@ pipeline { steps { echo '--- Deploying Frontend ---' sh "rm -rf ${FRONT_DEST}/*" - sh "cp -r frontend/dist/* ${FRONT_DEST}/" + sh "cp -a frontend/dist/. ${FRONT_DEST}/" } } @@ -65,4 +65,4 @@ pipeline { } } } -} \ No newline at end of file +}