Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Commit 0356bb7

Browse files
hlovdaladiazulay
authored andcommitted
Join args.push statements
1 parent b97a740 commit 0356bb7

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/arduino/arduino.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -615,9 +615,10 @@ export class ArduinoApp {
615615
return false;
616616
}
617617

618-
args.push("compile", "--upload");
619-
args.push("--programmer", programmer)
620-
args.push("--port", dc.port);
618+
args.push("compile",
619+
"--upload",
620+
"--programmer", programmer,
621+
"--port", dc.port);
621622
} else {
622623
if (!this.useArduinoCli()) {
623624
args.push("--verify");

0 commit comments

Comments
 (0)