From c9f2a451c0a364c862bdcf3477c4cde3dad925c6 Mon Sep 17 00:00:00 2001 From: teajay Date: Thu, 28 May 2020 21:31:23 +0200 Subject: [PATCH] Hello World --- Pipeline/Jenkinsfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Pipeline/Jenkinsfile b/Pipeline/Jenkinsfile index 6418eb3..343007f 100644 --- a/Pipeline/Jenkinsfile +++ b/Pipeline/Jenkinsfile @@ -12,11 +12,10 @@ pipeline { stages { stage('clone') { steps { - echo "" echo "###################" echo "# Cloning Repos #" echo "###################" - echo "" + echo "checking out build scripts" dir("${DIR_SCRIPTS}"){ @@ -31,7 +30,10 @@ pipeline { stage('clean'){ steps{ - //sh "rm -r ./*" + echo "########################" + echo "# Cleaning Workspace #" + echo "########################" + //sh "rm -r -f ./*" } }