Skip to content

Commit

Permalink
fix: unixify man paths
Browse files Browse the repository at this point in the history
  • Loading branch information
antongolub committed May 24, 2024
1 parent e754e31 commit b418d86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/normalize.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function normalizePackageMan (pkg, changes) {
if (typeof man !== 'string') {
changes?.push(`removed invalid "man [${man}]"`)
} else {
mans.push(securePath(man))
mans.push(securePath(man.replace(/\\|:/g, '/')))
}
}

Expand Down

0 comments on commit b418d86

Please sign in to comment.