Skip to content

Commit

Permalink
[incubator-kie-issues#717] mvn package throws an exception in Kogito …
Browse files Browse the repository at this point in the history
…project in Microsoft Windows machines with `quarkus.package.type=uber-jar` (#5694)

* kie-issues#717: Windows path management fixed.

* kie-issues#717: Removed unnecessary changes.

* kie-issues#717: Moving the fix on the field assignment to cover all the cases
  • Loading branch information
yesamer authored Feb 20, 2024
1 parent 72c1d6b commit a169248
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ private GeneratedFile(GeneratedFileType type, Path path, String pathAsString, by
}

this.path = path;
this.pathAsString = pathAsString;
this.pathAsString = pathAsString.replace('\\', '/');
this.contents = contents;
}

Expand Down

0 comments on commit a169248

Please sign in to comment.