From 58a77754ec1e99f8e8879ed2f3e39fe29fdab91a Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 19 Sep 2023 20:40:58 +0200 Subject: [PATCH] that should do the job --- automation/Jenkinsfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/automation/Jenkinsfile b/automation/Jenkinsfile index 0651995..64c23f4 100644 --- a/automation/Jenkinsfile +++ b/automation/Jenkinsfile @@ -10,7 +10,10 @@ pipeline { steps { sshagent(credentials: ['documentation-buildfix']) { // Deploy to Apache webserver - sh 'rsync -r buildfix@documentation.irs.uni-stuttgart.de:/' + sh """ + rsync -r --exclude projects/* --exclude static/font-univers \\ + . buildfix@documentation.irs.uni-stuttgart.de:/ --delete \\ + """ } } }