Skip to content

Commit a2d44d7

Browse files
author
jantje
committed
1 parent c96f83f commit a2d44d7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

io.sloeber.core/src/io/sloeber/core/api/BoardDescriptor.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -561,12 +561,13 @@ public IProject createProject(String projectName, URI projectURI,
561561
ICResourceDescription cfgd = defaultConfigDescription.getResourceDescription(new Path(new String()), true);
562562
ICExclusionPatternPathEntry[] entries = cfgd.getConfiguration().getSourceEntries();
563563
if (entries.length == 1) {
564-
Path exclusionPath[] = new Path[5];
564+
Path exclusionPath[] = new Path[6];
565565
exclusionPath[0] = new Path(LIBRARY_PATH_SUFFIX + "/?*/**/?xamples/**");
566566
exclusionPath[1] = new Path(LIBRARY_PATH_SUFFIX + "/?*/**/?xtras/**");
567567
exclusionPath[2] = new Path(LIBRARY_PATH_SUFFIX + "/?*/**/test*/**");
568568
exclusionPath[3] = new Path(LIBRARY_PATH_SUFFIX + "/?*/**/third-party/**");
569-
exclusionPath[4] = new Path(LIBRARY_PATH_SUFFIX + "**/._*");
569+
exclusionPath[4] = new Path(LIBRARY_PATH_SUFFIX + "/**/._*");
570+
exclusionPath[5] = new Path(LIBRARY_PATH_SUFFIX + "/?*/utility/*/*");
570571

571572
ICExclusionPatternPathEntry newSourceEntry = new CSourceEntry(entries[0].getFullPath(), exclusionPath,
572573
ICSettingEntry.VALUE_WORKSPACE_PATH);

0 commit comments

Comments
 (0)