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 baea15f7c7
commit b36803cecf
1 changed files with 2 additions and 2 deletions

View File

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