Fix bug in build doc target
epsi-builds/msspec_python3/pipeline/head There was a failure building this commit Details

There was no closing single quote
This commit is contained in:
Sylvain Tricot 2021-06-30 15:25:14 +02:00
parent 16a550ee26
commit a33a42e9db
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -9,8 +9,8 @@ pipeline {
stage('Building HTML documentation...') { stage('Building HTML documentation...') {
steps { steps {
echo 'building HTML...' echo 'building HTML...'
sh '/bin/bash -c "source _venv/bin/activate && pip install sphinx lxml" sh '/bin/bash -c "source _venv/bin/activate && pip install sphinx lxml"'
sh '/bin/bash -c "source _venv/bin/activate && cd doc && make html" sh '/bin/bash -c "source _venv/bin/activate && cd doc && make html"'
} }
} }
stage('Syncing website...') { stage('Syncing website...') {