Skip to content

Commit

Permalink
Normalize the absolute package paths
Browse files Browse the repository at this point in the history
  • Loading branch information
betwo committed Apr 22, 2021
1 parent bc7095d commit 012da3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export class Package {

public getAbsolutePath(): fs.PathLike {
if (this.absolute_path === undefined) {
let src_path = path.dirname(this.package_xml_path.toString());
let src_path = path.normalize(path.dirname(this.package_xml_path.toString()));
this.absolute_path = src_path;
}
return this.absolute_path;
Expand Down

0 comments on commit 012da3b

Please sign in to comment.