We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66c6d49 commit 1a167b7Copy full SHA for 1a167b7
app/src/cc/arduino/packages/Uploader.java
@@ -88,6 +88,10 @@ protected boolean executeUploadCommand(Collection<String> command) throws Except
88
}
89
90
protected boolean executeUploadCommand(String command[]) throws Exception {
91
+ // Skip empty commands
92
+ if (command == null || command.length == 0)
93
+ return true;
94
+
95
notFoundError = false;
96
int result = -1;
97
0 commit comments