From c0e557316f7e3f8f5a46ca0f5cc15dbab450d135 Mon Sep 17 00:00:00 2001 From: Eyck-Alexander Jentzsch Date: Thu, 11 Jul 2024 12:59:43 +0200 Subject: [PATCH] adds switch to mkdir --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9ffbb2a..9fd7f6b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -77,7 +77,7 @@ pipeline { stages { stage('Run riscof') { steps { - sh "mkdir ${BACKEND}" + sh "mkdir -p ${BACKEND}" sh "python3 TGC-COMPLIANCE/run_act.py -core ${CORE} -sim build/dbt-rise-tgc/tgc-sim -w ${BACKEND} --local --backend ${BACKEND}" } } @@ -99,7 +99,7 @@ pipeline { stages { stage('Run riscof') { steps { - sh "mkdir ${BACKEND}" + sh "mkdir -p ${BACKEND}" sh "python3 TGC-COMPLIANCE/run_act.py -core ${CORE} -sim build/dbt-rise-tgc/tgc-sim -w ${BACKEND} --local --backend ${BACKEND}" } }