Skip to content

Commit

Permalink
fix(objectionary#50): separator
Browse files Browse the repository at this point in the history
  • Loading branch information
maxonfjvipon committed Jan 22, 2024
1 parent cd89c4b commit 5e84f98
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/main/java/org/eolang/ineo/FuseMojo.java
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,10 @@ public void execute() {
try {
final String pckg = this.sourcesDir.toPath().relativize(file).toString()
.replace(String.format("%s%s", File.separator, file.getFileName()), "")
.replaceAll(String.format("\\%s", File.separator), ".");
.replace(File.separator, ".");
final Path generated = this.outputDir.toPath().resolve(
String.join(
File.separator,
pckg.replaceAll("\\.", File.separator),
"BA.xmir"
File.separator, pckg.replace(".", File.separator), "BA.xmir"
)
);
new Home(
Expand Down

0 comments on commit 5e84f98

Please sign in to comment.