mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-01 12:24:14 +01:00
Explicitly specifying intel hex to avrdude so it's not confused by paths with :'s in them from Windows drive letters
This commit is contained in:
parent
084b860e60
commit
3d1ebb5e64
@ -67,7 +67,7 @@ public class AvrdudeUploader extends Uploader {
|
||||
commandDownloader.add("-D");
|
||||
if (!Preferences.getBoolean("upload.verify"))
|
||||
commandDownloader.add("-V");
|
||||
commandDownloader.add("-Uflash:w:" + buildPath + File.separator + className + ".hex");
|
||||
commandDownloader.add("-Uflash:w:" + buildPath + File.separator + className + ".hex:i");
|
||||
return uisp(commandDownloader);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user