chore: remove comments explaining frontend deployment steps.

This commit is contained in:
Van Leemput Dayron
2025-12-15 18:22:34 +01:00
parent fc4e843ed3
commit 539b0ad314

View File

@@ -27,8 +27,6 @@ pipeline {
stage('Deploy Frontend') { stage('Deploy Frontend') {
steps { steps {
echo '--- Deploying Frontend to Apache folder ---' echo '--- Deploying Frontend to Apache folder ---'
// On vide le dossier cible (sauf s'il est vide) et on copie le build
// Note : Adaptez 'build' en 'dist' si vous utilisez ViteJS
sh "rm -rf ${FRONT_DEST}/*" sh "rm -rf ${FRONT_DEST}/*"
sh "cp -r frontend/build/* ${FRONT_DEST}/" sh "cp -r frontend/build/* ${FRONT_DEST}/"
} }