Skip to content

Commit

Permalink
do not add rascal project as lib
Browse files Browse the repository at this point in the history
  • Loading branch information
jurgenvinju committed Feb 12, 2025
1 parent c8e1b91 commit 0dc1ad4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/org/rascalmpl/library/util/PathConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,9 @@ else if (dep == rascalProject) {
}
else {
// this is a jar without Rascal meta-data, we need it for the classpath
libsWriter.append(dep);
if (dep != rascalProject) {
libsWriter.append(dep);
}
}
}
}
Expand Down

0 comments on commit 0dc1ad4

Please sign in to comment.