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 b91a5ca commit 7ac331fCopy full SHA for 7ac331f
src/arduino/arduino.ts
@@ -617,8 +617,7 @@ export class ArduinoApp {
617
return false;
618
}
619
620
- args.push("compile",
621
- "--upload",
+ args.push("upload",
622
"--programmer", programmer,
623
"--port", dc.port);
624
} else {
@@ -641,7 +640,7 @@ export class ArduinoApp {
641
640
642
this._settings.useArduinoCli ? args.push("--verbose") : args.push("--verbose-build");
643
644
- if (verbose) {
+ if (verbose && !this._settings.useArduinoCli) {
645
args.push("--verbose-upload");
646
647
0 commit comments