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

Commit 042ce48

Browse files
committed
fix tslint issue
1 parent 3c50b73 commit 042ce48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/arduino/arduinoSettings.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ export class ArduinoSettings implements IArduinoSettings {
6363

6464
// Arduino IDE will save all packages into portable folder if it exsits.
6565
// https://github.com/Microsoft/vscode-arduino/issues/415
66-
if (!util.directoryExistsSync(this._packagePath) && util.directoryExistsSync(path.join(this._arduinoPath, 'portable'))) {
67-
this._packagePath = path.join(this._arduinoPath, 'portable');
66+
if (!util.directoryExistsSync(this._packagePath) && util.directoryExistsSync(path.join(this._arduinoPath, "portable"))) {
67+
this._packagePath = path.join(this._arduinoPath, "portable");
6868
}
6969
}
7070

0 commit comments

Comments
 (0)