From 075403ebd13b17c8dba8f0c290120c8a71b8591b Mon Sep 17 00:00:00 2001 From: acereca Date: Fri, 12 Feb 2021 14:18:52 +0100 Subject: [PATCH] pip absolute path --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3820a12..8df79d1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,9 +4,9 @@ pipeline { stage("Setup") { agent any steps { - sh 'pip3.8 install sphinx' - sh 'pip3.8 install pydata-sphinx-theme' - sh 'pip3.8 install -e .' + sh '/home/patrick/.local/bin/pip3.8 install sphinx' + sh '/home/patrick/.local/bin/pip3.8 install pydata-sphinx-theme' + sh '/home/patrick/.local/bin/pip3.8 install -e .' sh 'mkdir -p docs/_build' } }