Tried to fix the broken 'syncing website' stage.
epsi-builds/msspec_python3/pipeline/head This commit looks good Details

This last stage is not working due to permission
issues on the server side. I tried to just update
existing files instead of removing everything and
copying new files. Let's see...
This commit is contained in:
Sylvain Tricot 2021-09-27 14:17:25 +02:00
parent e1659db33b
commit d6882b57b9
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -14,7 +14,7 @@ pipeline {
stage('Syncing website...') {
steps {
// echo 'Syncing website...'
sh 'rm -rf $HOME/www/*'
// sh 'rm -rf $HOME/www/*'
sh 'cp -a ./doc/build/html/* $HOME/www/'
}
}