From 6277a0e9ce95f86d75884e158cb7a9f59fc8bc8d Mon Sep 17 00:00:00 2001 From: Ovidio Mallo Date: Mon, 2 Jan 2017 04:00:35 +0100 Subject: [PATCH] Clean the workspace before checkout --- deployment/pipeline.groovy | 1 + 1 file changed, 1 insertion(+) diff --git a/deployment/pipeline.groovy b/deployment/pipeline.groovy index 62087c5..c6b1774 100644 --- a/deployment/pipeline.groovy +++ b/deployment/pipeline.groovy @@ -2,6 +2,7 @@ node() { stage("Checkout") { + deleteDir() git "https://github.com/omallo/ruby-ex.git" }