Added missing libs.deployDir #91

Closed
wants to merge 1 commit into
from

Added missing libs.deployDir

Debug deploy target appeared to be missing libs.deployDir , which was preventing a successful debug deploy from eclipse. I"m not sure if this is all of the required changes (as I still have to manually restart the remote java application), but this does allow the deploy to go through as expected.
commit 1ec4ca0d7c6a516fa7a1a629687f1f222ba1b257 @gerth2 gerth2 committed on GitHub Jan 13, 2017
@@ -189,7 +189,7 @@
</target>
<target name="debug-deploy" depends="jar,get-target-ip,dependencies" description="Deploy the jar and start the program running.">
- <deploy-libs libs.name="WPI_Native_Libraries" libs.basedir="${wpilib.native.lib}">
+ <deploy-libs libs.name="WPI_Native_Libraries" libs.basedir="${wpilib.native.lib}" libs.deployDir="${libDeploy.dir}">
<libs.local>
<fileset id="wpiNativeLibs.local" dir="${wpilib.native.lib}">
<include name="**/*.so"/>