From af2bdfc421c380b872da5e5ab13d18d9e2dce743 Mon Sep 17 00:00:00 2001 From: Grant Limberg Date: Tue, 25 Oct 2016 13:14:28 -0700 Subject: [PATCH] dir directive appears to create a tmpdir rather than just cd --- Jenkinsfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a404fea78..7bbcaa249 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -25,9 +25,7 @@ parallel 'centos7': { } stage('Build macOS UI') { - dir('macui') { - sh 'xcodebuild -scheme "ZeroTier One" -configuration Debug' - } + sh 'cd macui && xcodebuild -scheme "ZeroTier One" -configuration Debug' } } }