Skip to content

Commit

Permalink
Merge pull request #34611 from melloware/revert-undertow
Browse files Browse the repository at this point in the history
Undertow correct path when building on Windows to Docker
  • Loading branch information
gastaldi authored Jul 7, 2023
2 parents f8968c7 + 6e49bd7 commit a9de803
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ private DirectoryResource(String path) {
}

private String evaluatePath(String path) {
return IS_WINDOWS ? path.replaceAll("\\\\", "/") : path;
return path.replaceAll("\\\\", "/");
}

@Override
Expand Down

0 comments on commit a9de803

Please sign in to comment.