Fix verify as per James

This commit is contained in:
Bruce Eckel 2016-08-02 09:12:22 -06:00
parent e971340315
commit 6e1cf33f94

View File

@ -1,6 +1,6 @@
import org.gradle.internal.jvm.Jvm import org.gradle.internal.jvm.Jvm
import org.apache.tools.ant.util.TeeOutputStream import org.apache.tools.ant.util.TeeOutputStream
boolean debug = false boolean debug = false
class Tags { class Tags {
Boolean hasMainMethod = false Boolean hasMainMethod = false
@ -205,7 +205,7 @@ configure(subprojects - project(':onjava')) {
} }
} }
task verify(type:Exec) { task verify(type:Exec) << {
println("execute 'gradlew run' first") println("execute 'gradlew run' first")
commandLine 'python', 'verify_output.py' commandLine 'python', 'verify_output.py'
} }