Skip to content

Commit 69bec8d

Browse files
committed
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)
1 parent 9ef0d4c commit 69bec8d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

build/build.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -835,11 +835,11 @@
835835
-->
836836

837837
<!-- use the jre subfolder when having downloaded a JDK file -->
838-
<condition property="jre.dir" value="jdk${jdk.esoteric}/jre/">
838+
<condition property="jre.dir" value="jdk${jdk.esoteric}/jre">
839839
<!-- property might not be set, but it is for arm -->
840840
<equals arg1="${jre.download.jdk}" arg2="true" />
841841
</condition>
842-
<condition property="jre.dir" value="jre${jdk.esoteric}/">
842+
<condition property="jre.dir" value="jre${jdk.esoteric}">
843843
<not>
844844
<equals arg1="${jre.download.jdk}" arg2="true" />
845845
</not>

0 commit comments

Comments
 (0)