From c6675df6dddd338ac264e8f2a8ccfdd870125516 Mon Sep 17 00:00:00 2001 From: Ovidio Mallo Date: Wed, 7 Dec 2016 23:16:48 +0100 Subject: [PATCH] Print the working directory --- deployment/pipeline.groovy | 1 + 1 file changed, 1 insertion(+) diff --git a/deployment/pipeline.groovy b/deployment/pipeline.groovy index c70792f..1053fc9 100644 --- a/deployment/pipeline.groovy +++ b/deployment/pipeline.groovy @@ -5,6 +5,7 @@ node() { def appConfigFile = "deployment/config/app.yaml" stage('Build') { + sh "pwd" sh "${ocCmd} process -f ${buildConfigFile} -n rubex-dev | ${ocCmd} apply -f - -n rubex-dev" sh "${ocCmd} start-build frontend -w -n rubex-dev" }