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 d71da7c commit bf03b22Copy full SHA for bf03b22
src/arduino/arduinoSettings.ts
@@ -214,7 +214,8 @@ export class ArduinoSettings implements IArduinoSettings {
214
this._packagePath = path.join(this._arduinoPath, "portable");
215
} else if (util.fileExistsSync(path.join(this._arduinoPath, "AppxManifest.xml"))) {
216
this._packagePath = path.join(folder, "ArduinoData");
217
- } else if (process.env.hasOwnProperty('ARDUINO_DIRECTORIES_DATA')) {
+ } else if (process.env.hasOwnProperty("ARDUINO_DIRECTORIES_DATA")) {
218
+
219
this._packagePath = process.env.ARDUINO_DIRECTORIES_DATA
220
} else {
221
this._packagePath = path.join(process.env.LOCALAPPDATA, "Arduino15");
0 commit comments