From 9b495afceeb8ddc40f1f8c4394ebba2662756525 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 12 Dec 2023 11:41:45 +0100 Subject: [PATCH] fix for jenkinsfile --- automation/Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automation/Jenkinsfile b/automation/Jenkinsfile index b50ef74..8684b61 100644 --- a/automation/Jenkinsfile +++ b/automation/Jenkinsfile @@ -18,7 +18,7 @@ pipeline { sh 'hugo' sshagent(credentials: ['documentation-buildfix']) { // Deploy to Apache webserver - sh "rsync -r --delete --exclude 'content/projects/' --exclude static/fonts/univers public/ buildfix@documentation.irs.uni-stuttgart.de:/" + sh "rsync -r --delete --exclude 'content/projects/' --exclude static/fonts/univers/ public/ buildfix@documentation.irs.uni-stuttgart.de:/" } } }