Remove superfluous slash in rsync source path in build.xml

This didn't break anything, but I noticed the extra slash while looking at this (unrelated) error message:

rsync: change_dir "/home/pi/Downloads/processing-jvm-fonts/build/linux//jdk1.8.0_77/jre" failed: No such file or directory (2)
This commit is contained in:
gohai
2016-05-27 07:40:25 +02:00
parent 6523b8927f
commit 94e0c09fa5

View File

@@ -835,11 +835,11 @@
-->
<!-- use the jre subfolder when having downloaded a JDK file -->
<condition property="jre.dir" value="jdk${jdk.esoteric}/jre/">
<condition property="jre.dir" value="jdk${jdk.esoteric}/jre">
<!-- property might not be set, but it is for arm -->
<equals arg1="${jre.download.jdk}" arg2="true" />
</condition>
<condition property="jre.dir" value="jre${jdk.esoteric}/">
<condition property="jre.dir" value="jre${jdk.esoteric}">
<not>
<equals arg1="${jre.download.jdk}" arg2="true" />
</not>