Updated as per Justin's explanation

This commit is contained in:
Bruce Eckel 2016-08-02 11:00:06 -06:00
parent 6e1cf33f94
commit 61d9e21317

View File

@ -205,7 +205,9 @@ configure(subprojects - project(':onjava')) {
}
}
task verify(type:Exec) << {
println("execute 'gradlew run' first")
task verify(type:Exec) {
commandLine 'python', 'verify_output.py'
doFirst {
println("execute 'gradlew run' first")
}
}