HHH-14199 fix the error when running 'setDataBase' gradle task

This commit is contained in:
Nathan Xu 2020-08-28 12:57:17 -04:00 committed by Andrea Boriero
parent 90be61210c
commit 517a0b9639
1 changed files with 2 additions and 2 deletions

View File

@ -306,8 +306,8 @@ task copyResourcesToIntelliJOutFolder {
task setDataBase {
inputs.property( "db", db )
doLast {
processTestResources.execute()
copyResourcesToIntelliJOutFolder.execute()
processTestResources
copyResourcesToIntelliJOutFolder
println( 'Setting current database to ' + db )
}