10000 Storing Libraries in subfolders by matthijskooijman · Pull Request #1986 · arduino/Arduino · GitHub
[go: up one dir, main page]

Skip to content

Storing Libraries in subfolders #1986

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Prev Previous commit
Next Next commit
Fix indentation error
  • Loading branch information
matthijskooijman committed Oct 30, 2014
commit eeb7dfa0ed33a02fc8b393759138e21bf5c64f1d
2 changes: 1 addition & 1 deletion app/src/processing/app/Base.java
Original file line number Diff line number Diff line change
Expand Up @@ -1412,7 +1412,7 @@ public void onBoardOrPortChange() {
String referencedCore = core.split(":")[0];
TargetPlatform referencedPlatform = Base.getTargetPlatform(referencedCore, targetPlatform.getId());
if (referencedPlatform != null) {
File referencedPlatformFolder = referencedPlatform.getFolder();
File referencedPlatformFolder = referencedPlatform.getFolder();
librariesFolders.add(new File(referencedPlatformFolder, "libraries"));
}
}
Expand Down
0