fix: Update frontend deployment command to use correct copy syntax

This commit is contained in:
Van Leemput Dayron
2026-02-13 14:24:25 +01:00
parent c7f210a141
commit 52c46974f0

2
Jenkinsfile vendored
View File

@@ -27,7 +27,7 @@ pipeline {
steps { steps {
echo '--- Deploying Frontend ---' echo '--- Deploying Frontend ---'
sh "rm -rf ${FRONT_DEST}/*" sh "rm -rf ${FRONT_DEST}/*"
sh "cp -r frontend/dist/* ${FRONT_DEST}/" sh "cp -a frontend/dist/. ${FRONT_DEST}/"
} }
} }