Skip to content

Commit

Permalink
Fix issue that target folders of open dependencies were ignored
Browse files Browse the repository at this point in the history
  • Loading branch information
sungshik committed Dec 6, 2024
1 parent 6637721 commit d5bef4b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/org/rascalmpl/library/util/PathConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -543,8 +543,10 @@ public static PathConfig fromSourceProjectRascalManifest(ISourceLocation manifes
switch (mode) {
case INTERPRETER:
srcsWriter.appendAll(childConfig.getSrcs());
libsWriter.append(childConfig.getBin());
break;
case COMPILER:
// FIXME (?): Add something to `srcsWriter` here?
libsWriter.append(setTargetScheme(projectLoc));
break;
}
Expand Down

0 comments on commit d5bef4b

Please sign in to comment.