From aee4b37c1f687b59c06cfcf441f4f5c80e6b1a05 Mon Sep 17 00:00:00 2001 From: teajay Date: Thu, 28 May 2020 21:29:38 +0200 Subject: [PATCH] Hello World --- Pipeline/Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Pipeline/Jenkinsfile b/Pipeline/Jenkinsfile index 6a7ee25..6418eb3 100644 --- a/Pipeline/Jenkinsfile +++ b/Pipeline/Jenkinsfile @@ -25,13 +25,13 @@ pipeline { dir("${DIR_GLUON}"){ sh "git clone https://github.com/freifunk-gluon/gluon.git gluon -b ${VERSION}" } - sh "ls -l" + } } stage('clean'){ steps{ - sh "rm -r ./*" + //sh "rm -r ./*" } }