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

This commit is contained in:
Mark Vieira 2019-08-13 16:38:32 -07:00
parent b17bf70e04
commit bba7017262
No known key found for this signature in database
GPG Key ID: CA947EF7E6D4B105
1 changed files with 2 additions and 2 deletions

View File

@ -527,9 +527,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' }
}
}
}