This repository was archived by the owner on Oct 1, 2024. It is now read-only.
File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -675,7 +675,7 @@ export class ArduinoApp {
675
675
// What if the user specifies an output directory "../builds/my project"
676
676
677
677
// the first choice of the path should be from the users explicit settings.
678
- if ( dc . output ) {
678
+ if ( dc . output ) {
679
679
buildDir = path . resolve ( ArduinoWorkspace . rootPath , dc . output ) ;
680
680
} else {
681
681
buildDir = path . resolve ( ArduinoWorkspace . rootPath , buildDir ) ;
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ export const messages = {
35
35
FAILED_SEND_SERIALPORT : "Failed to send message to serial port." ,
36
36
SERIAL_PORT_NOT_STARTED : "Serial Monitor has not been started." ,
37
37
SEND_BEFORE_OPEN_SERIALPORT : "Please open a serial port first." ,
38
- NO_PROGRAMMMER_SELECTED : "Please select the programmer first."
38
+ NO_PROGRAMMMER_SELECTED : "Please select the programmer first." ,
39
39
} ;
40
40
41
41
export const statusBarPriority = {
Original file line number Diff line number Diff line change @@ -120,8 +120,8 @@ export class ArduinoDebugConfigurationProvider implements vscode.DebugConfigurat
120
120
if ( ! config . program || config . program === "${file}" ) {
121
121
const outputFolder = path . join ( dc . output || `.build` ) ;
122
122
const outputPath = path . join ( ArduinoWorkspace . rootPath , outputFolder ) ;
123
-
124
- // if the directory was already there, clear the folder so that it's not corrupted from previous builds.
123
+
124
+ // if the directory was already there, clear the folder so that it's not corrupted from previous builds.
125
125
if ( util . directoryExistsSync ( outputPath ) ) {
126
126
util . rmdirRecursivelySync ( outputPath ) ;
127
127
}
You can’t perform that action at this time.
0 commit comments