Arduino_Apollo3 icon indicating copy to clipboard operation
Arduino_Apollo3 copied to clipboard

Platform.txt Missing Quotes on MacOS Causes Upload Failure

Open DigiMaxIO opened this issue 2 years ago • 0 comments

If your MacOS hard drive has spaces in its name, then it will fail to upload to any board.

In the Platform.txt file, these lines: tools.svl.pgm.macosx={runtime.platform.path}/tools/uploaders/svl/dist/macosx/svl tools.asb.pgm.macosx={runtime.platform.path}/tools/uploaders/asb/dist/macosx/asb

Should instead be: tools.svl.pgm.macosx="{runtime.platform.path}/tools/uploaders/svl/dist/macosx/svl" tools.asb.pgm.macosx="{runtime.platform.path}/tools/uploaders/asb/dist/macosx/asb"

Which prevents the space from confusing the terminal command. It is like this on all versions of this core and should be fixed.

DigiMaxIO avatar Dec 29 '22 22:12 DigiMaxIO