From 094a9f0956bf54a99ac911f4c9cc3832e6140088 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 11 Dec 2023 15:12:50 +0100 Subject: [PATCH] remove those trailing slashes --- automation/Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automation/Jenkinsfile b/automation/Jenkinsfile index 937fea1..0a27b8b 100644 --- a/automation/Jenkinsfile +++ b/automation/Jenkinsfile @@ -67,7 +67,7 @@ pipeline { sh 'mdbook build' sshagent(credentials: ['documentation-buildfix']) { // Deploy to Apache webserver - sh 'rsync -r --delete book/ buildfix@documentation.irs.uni-stuttgart.de:/projects/sat-rs' + sh 'rsync -r --delete book buildfix@documentation.irs.uni-stuttgart.de:/projects/sat-rs' } } }