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

Commit

Permalink
Join args.push statements
Browse files Browse the repository at this point in the history
  • Loading branch information
hlovdal authored and adiazulay committed Jan 19, 2021
1 parent b97a740 commit 0356bb7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/arduino/arduino.ts
Original file line number Diff line number Diff line change
Expand Up @@ -615,9 +615,10 @@ export class ArduinoApp {
return false;
}

args.push("compile", "--upload");
args.push("--programmer", programmer)
args.push("--port", dc.port);
args.push("compile",
"--upload",
"--programmer", programmer,
"--port", dc.port);
} else {
if (!this.useArduinoCli()) {
args.push("--verify");
Expand Down

0 comments on commit 0356bb7

Please sign in to comment.