From 1c78388277258de10e23c3d7385f1faa5b29a4bf Mon Sep 17 00:00:00 2001 From: teajay Date: Thu, 28 May 2020 21:33:43 +0200 Subject: [PATCH] Hello World --- Pipeline/Jenkinsfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Pipeline/Jenkinsfile b/Pipeline/Jenkinsfile index 343007f..8c5c115 100644 --- a/Pipeline/Jenkinsfile +++ b/Pipeline/Jenkinsfile @@ -6,7 +6,6 @@ pipeline { REPO_GLUON = "https://github.com/freifunk-gluon/gluon.git" DIR_SCRIPTS = "scrpt" - DIR_GLUON = "gluon" } stages { @@ -21,9 +20,9 @@ pipeline { dir("${DIR_SCRIPTS}"){ git "${REPO_SCRIPTS}" } - dir("${DIR_GLUON}"){ - sh "git clone https://github.com/freifunk-gluon/gluon.git gluon -b ${VERSION}" - } + + sh "git clone https://github.com/freifunk-gluon/gluon.git gluon -b ${VERSION}" + } }