We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a3b82a commit f502c9bCopy full SHA for f502c9b
app/src/processing/app/Base.java
@@ -344,18 +344,24 @@ public Base(String[] args) throws Exception {
344
i++;
345
if (i < args.length)
346
selectBoard = args[i];
347
+ else
348
+ showError(null, "Argument required for --board", null);
349
continue;
350
}
351
if (args[i].equals("--port")) {
352
353
354
selectPort = args[i];
355
356
+ showError(null, "Argument required for --port", null);
357
358
359
if (args[i].equals("--curdir")) {
360
361
362
currentDirectory = args[i];
363
364
+ showError(null, "Argument required for --curdir", null);
365
366
367
if (args[i].startsWith("--"))
0 commit comments