Browse Source

dir directive appears to create a tmpdir rather than just cd

Grant Limberg 8 years ago
parent
commit
af2bdfc421
1 changed files with 1 additions and 3 deletions
  1. 1 3
      Jenkinsfile

+ 1 - 3
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'
         }
     }
 }