Jenkins needs the / to get the directory

This commit is contained in:
William Giokas 2018-06-26 11:53:55 -06:00 committed by rallytime
parent 21ed5b97ce
commit d72af6ab4e
No known key found for this signature in database
GPG key ID: E8F1A4B90D0DEA19

View file

@ -14,7 +14,7 @@ pipeline {
stage('build') {
steps {
sh 'eval "$(pyenv init -)"; make -C doc clean html'
archiveArtifacts artifacts: 'doc/_build/html'
archiveArtifacts artifacts: 'doc/_build/html/'
}
}
}