Skip to content

Commit 8127088

Browse files
committed
Fix "illegal char" in build.xml
CI run on windows produce the following error: D:\a\Arduino\Arduino\build\build.xml:365: java.nio.file.InvalidPathException: Illegal char <*> at index 42: D:\a\Arduino\Arduino\build\macosx\arduino-*.dmg
1 parent 6d3ad18 commit 8127088

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

build/build.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -365,9 +365,11 @@
365365
<delete dir="macosx/work" />
366366
<delete dir="macosx/working_dir" />
367367
<delete dir="macosx/working.dmg" />
368-
<delete file="macosx/arduino-*.dmg" />
369368
<delete>
370-
<fileset dir="macosx" includes="arduino-*macosx*.zip"/>
369+
<fileset dir="macosx" includes="arduino-*.dmg" />
370+
</delete>
371+
<delete>
372+
<fileset dir="macosx" includes="arduino-*macosx*.zip" />
371373
</delete>
372374
</target>
373375

0 commit comments

Comments
 (0)