Просмотр исходного кода

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

Mark Vieira 6 лет назад
Родитель
Сommit
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' }
       }
   }
 }