Skip to content

Commit

Permalink
Merge pull request #32 from nich0s/patch-1
Browse files Browse the repository at this point in the history
Incorrect File.seperator use - broken on Windows.
  • Loading branch information
noboomu authored May 2, 2020
2 parents 53b6d75 + bea9fd3 commit eb514fe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ public RoutingHandler get()
/*
* YAML path
*/
String pathTemplate = this.applicationPath + File.separator + this.specFilename;
String pathTemplate = this.applicationPath + "/" + this.specFilename;

FileResourceManager resourceManager = new FileResourceManager(this.resourcePath.toFile(), 1024);

Expand Down

0 comments on commit eb514fe

Please sign in to comment.