Skip to content

Commit bf03b22

Browse files
authored
Update src/arduino/arduinoSettings.ts
1 parent d71da7c commit bf03b22

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/arduino/arduinoSettings.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,8 @@ export class ArduinoSettings implements IArduinoSettings {
214214
this._packagePath = path.join(this._arduinoPath, "portable");
215215
} else if (util.fileExistsSync(path.join(this._arduinoPath, "AppxManifest.xml"))) {
216216
this._packagePath = path.join(folder, "ArduinoData");
217-
} else if (process.env.hasOwnProperty('ARDUINO_DIRECTORIES_DATA')) {
217+
} else if (process.env.hasOwnProperty("ARDUINO_DIRECTORIES_DATA")) {
218+
218219
this._packagePath = process.env.ARDUINO_DIRECTORIES_DATA
219220
} else {
220221
this._packagePath = path.join(process.env.LOCALAPPDATA, "Arduino15");

0 commit comments

Comments
 (0)