From c068427474ba0c2031cfc8bb27b23f488356db54 Mon Sep 17 00:00:00 2001 From: acereca Date: Fri, 12 Feb 2021 12:39:07 +0100 Subject: [PATCH] create _build on setup --- Jenkinsfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Jenkinsfile b/Jenkinsfile index 09f050e..3cb885c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,6 +5,7 @@ pipeline { agent any steps { sh 'pip install sphinx' + sh 'mkdir -p docs/_build' } } stage("Build") {