Skip to content

Commit

Permalink
Merge pull request #24628 from glefloch/fix/24452
Browse files Browse the repository at this point in the history
Add all existing project source directory in application model
  • Loading branch information
aloubyansky authored Mar 30, 2022
2 parents 3e16452 + e74ba9f commit 6c8dd9e
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,11 +156,12 @@ public static ResolvedDependency getProjectArtifact(Project project, LaunchMode
private static void collectDestinationDirs(Collection<SourceDir> sources, final PathList.Builder paths) {
for (SourceDir src : sources) {
if (!Files.exists(src.getOutputDir())) {
return;
continue;
}

final Path path = src.getOutputDir();
if (paths.contains(path)) {
return;
continue;
}
paths.add(path);
}
Expand Down

0 comments on commit 6c8dd9e

Please sign in to comment.