From a33a42e9db105b195b7cb9e5f22b55e5472f290d Mon Sep 17 00:00:00 2001 From: sylvain tricot Date: Wed, 30 Jun 2021 15:25:14 +0200 Subject: [PATCH] Fix bug in build doc target There was no closing single quote --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c591697..b5f9c2f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,8 +9,8 @@ pipeline { stage('Building HTML documentation...') { steps { echo 'building HTML...' - 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 && pip install sphinx lxml"' + sh '/bin/bash -c "source _venv/bin/activate && cd doc && make html"' } } stage('Syncing website...') {