Skip to content

Commit

Permalink
LPS-167756 Prevent run default rebuild hypersonic if database.types d…
Browse files Browse the repository at this point in the history
…oes not includes hypersonic
  • Loading branch information
ces-locpham authored and brianchandotcom committed Feb 7, 2023
1 parent 9847b99 commit a02be62
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,12 @@ message.
<parallel failonany="true" threadcount="${parallel.thread.count}">
<sequential>
<ant dir="sql" inheritAll="false" target="build-db" />
<ant dir="sql" inheritAll="false" target="rebuild-hypersonic" />
<if>
<contains string="${database.types}" substring="hypersonic" />
<then>
<ant dir="sql" inheritAll="false" target="rebuild-hypersonic" />
</then>
</if>
</sequential>
</parallel>

Expand Down

0 comments on commit a02be62

Please sign in to comment.