From 41b993656fb338329aaa2eacae4279a6cfd4b321 Mon Sep 17 00:00:00 2001 From: Shuchita Khare Date: Fri, 22 Sep 2023 12:57:34 +0100 Subject: [PATCH] mkdir -p --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8605614c..df30cd8b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -115,7 +115,7 @@ pipeline { dir("${REPO}") { withTools(params.TOOLS_VERSION) { withVenv { - sh 'mkdir build' + sh 'mkdir -p build' dir("build") { sh 'rm -rf' sh 'cmake --toolchain ../xmos_cmake_toolchain/xs2a.cmake ..'