Skip to content

Commit

Permalink
fix 'not a directory' exception in apply nests step
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaceWalkerRS committed Jun 16, 2024
1 parent a623423 commit d402296
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ private Path prepareNests(OrnitheNestsVersionMeta nestsMeta, OrderedVersion mcVe
}
MappingReader.read(mappingsPath, visitor);

mappingsPath = mappingsPath.resolve(".tmp");
mappingsPath = mappingsPath.resolveSibling(".tmp");

try (MappingWriter writer = MappingWriter.create(mappingsPath, MappingFormat.TINY_2_FILE)) {
mappingTree.accept(writer);
Expand Down

0 comments on commit d402296

Please sign in to comment.