Small patch to make ant use the SBT wrapper script.

This commit is contained in:
meeh
2018-05-06 00:20:54 +00:00
parent 5f81a8de59
commit 0a1191aa3f

View File

@@ -301,10 +301,10 @@
<target name="bbLauncher" depends="build">
<sequential>
<exec executable="sbt" dir="launchers" failonerror="true">
<exec executable="./sbt" dir="launchers" failonerror="true">
<arg value="browserbundle:clean" />
</exec>
<exec executable="sbt" dir="launchers" failonerror="true">
<exec executable="./sbt" dir="launchers" failonerror="true">
<arg value="browserbundle:assembly" />
</exec>
</sequential>
@@ -312,10 +312,10 @@
<target name="osxLauncher" depends="build,preppkg-osx">
<sequential>
<exec executable="sbt" dir="launchers" failonerror="true">
<exec executable="./sbt" dir="launchers" failonerror="true">
<arg value="macosx:cleanAllTask" />
</exec>
<exec executable="sbt" dir="launchers" failonerror="true">
<exec executable="./sbt" dir="launchers" failonerror="true">
<arg value="macosx:buildAppBundleTask" />
</exec>
</sequential>
@@ -1112,7 +1112,7 @@
<!--
Less common, but they pollute my workspace here, so we
might as well nuke these as well. Are there any others?
!!??? Why don't we just nuke "**/*~" ???!!
++Sponge