mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-17 22:23:10 +03:00
Allow to run empty recipes in platform.txt
This commit is contained in:
@ -88,6 +88,10 @@ public abstract class Uploader implements MessageConsumer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
protected boolean executeUploadCommand(String command[]) throws Exception {
|
protected boolean executeUploadCommand(String command[]) throws Exception {
|
||||||
|
// Skip empty commands
|
||||||
|
if (command == null || command.length == 0)
|
||||||
|
return true;
|
||||||
|
|
||||||
notFoundError = false;
|
notFoundError = false;
|
||||||
int result = -1;
|
int result = -1;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user