浏览代码

dir directive appears to create a tmpdir rather than just cd

Grant Limberg 9 年之前
父节点
当前提交
af2bdfc421
共有 1 个文件被更改,包括 1 次插入3 次删除
  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'
         }
     }
 }