Skip to content

Commit

Permalink
Fix bug in vm-finder.ant.xml when asking for vm location
Browse files Browse the repository at this point in the history
The `<fail>` task had an invalid declaration - it can't have an `if` and a nested `<condition>`
  • Loading branch information
facboy committed Oct 21, 2024
1 parent 3d95af7 commit 71db1bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildScripts/vm-finder.ant.xml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ and rerun the build; this build is capable of finding VMs automatically on many
<matches pattern="^\s*$" string="${jvm.loc}" />
</condition>
<fail if="jvm.loc.aborted">aborted</fail>
<fail if="jvm.loc.invalid">.
<fail>.

ERROR: That does not appear to be a valid location; ${jvm.loc}/bin/${exe.java} should exist.
<condition>
Expand Down

0 comments on commit 71db1bb

Please sign in to comment.