diff --git a/automation/Jenkinsfile b/automation/Jenkinsfile index a4144db..516ecb8 100644 --- a/automation/Jenkinsfile +++ b/automation/Jenkinsfile @@ -13,10 +13,7 @@ pipeline { steps { sshagent(credentials: ['documentation-buildfix']) { // Deploy to Apache webserver - sh """ - rsync -r --exclude projects/* --exclude static/font-univers \\ - . buildfix@documentation.irs.uni-stuttgart.de:/ --delete \\ - """ + sh 'rsync -r --exclude projects/* --exclude static/font-univers . buildfix@documentation.irs.uni-stuttgart.de:/ --delete' } } }