mirror of
https://github.com/processing/processing4.git
synced 2026-02-13 18:35:37 +01:00
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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user