瀏覽代碼

Restore check part 1 and 2 order mistakenly reversed in [#45098] (#45522)

Mark Vieira 6 年之前
父節點
當前提交
c252edbd96
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      build.gradle

+ 2 - 2
build.gradle

@@ -524,9 +524,9 @@ allprojects {
   def checkPart2 = tasks.register('checkPart2')
   plugins.withId('lifecycle-base') {
       if (project.path.startsWith(":x-pack:")) {
-          checkPart1.configure { dependsOn 'check' }
-      } else {
           checkPart2.configure { dependsOn 'check' }
+      } else {
+          checkPart1.configure { dependsOn 'check' }
       }
   }
 }