From 1fcb6ee2f1a680ec882c7dd854f17fe1290fe57f Mon Sep 17 00:00:00 2001 From: Ovidio Mallo Date: Wed, 7 Dec 2016 23:25:08 +0100 Subject: [PATCH] List the contents of the working directory --- deployment/pipeline.groovy | 1 + 1 file changed, 1 insertion(+) diff --git a/deployment/pipeline.groovy b/deployment/pipeline.groovy index aaa45db..e730de9 100644 --- a/deployment/pipeline.groovy +++ b/deployment/pipeline.groovy @@ -6,6 +6,7 @@ node() { stage('Build') { git "https://github.com/omallo/ruby-ex.git" + sh "ls -la" sh "${ocCmd} process -f ${buildConfigFile} -n rubex-dev | ${ocCmd} apply -f - -n rubex-dev" sh "${ocCmd} start-build frontend -w -n rubex-dev" }