Skip to content

Commit

Permalink
Canonicalize path for comparisons
Browse files Browse the repository at this point in the history
Signed-off-by: Scott Kurz <[email protected]>
  • Loading branch information
scottkurz committed Aug 14, 2023
1 parent 1c94c92 commit 1a4e80c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3894,7 +3894,7 @@ private void processFileChanges(
Path configPath = this.configDirectory.getCanonicalFile().toPath();
Path outputPath = this.outputDirectory.getCanonicalFile().toPath();

Path directory = fileChanged.getParentFile().toPath();
Path directory = fileChanged.getParentFile().getCanonicalFile().toPath();

// resource file check
File resourceParent = null;
Expand Down

0 comments on commit 1a4e80c

Please sign in to comment.