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

Add path of libraries into the properties file #1010

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/arduino/arduino.ts
Original file line number Diff line number Diff line change
Expand Up @@ -592,6 +592,9 @@ Please make sure the folder is not occupied by other procedures .`);
if (fs.existsSync(toolPath)) {
result.push(path.normalize(path.join(toolPath, "**")));
}
// path of custom libraries
result.push(path.join(this._settings.sketchbookPath, "libraries", "**"));

return result;
}

Expand Down