fix dependencies (#2835)

This commit is contained in:
Matthew Kennedy 2021-06-18 19:53:13 -07:00 committed by GitHub
parent 2c66d74c7e
commit b3e47b493b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -9,10 +9,10 @@
</target>
<target name="antlr">
<java jar="lib/antlr-4.5-complete.jar" args="-o src/com/rusefi/generated RusefiConfigGrammar.g4" fork="true" />
<java jar="lib/antlr-4.5-complete.jar" args="-o src/com/rusefi/generated RusefiConfigGrammar.g4" fork="true" failonerror="true" />
</target>
<target name="compile">
<target name="compile" depends="antlr">
<mkdir dir="build/classes"/>
<javac
source="${javac.source}"