pull/3903/head
filip mertens 1 year ago committed by yann300
parent 51cee0e2f3
commit cf49c3c009
  1. 6
      libs/remixd/src/utils.ts

@ -41,7 +41,11 @@ function isSubDirectory (parent: string, child: string) {
function relativePath (path: string, sharedFolder: string): string {
const relative: string = pathModule.relative(sharedFolder, path)
return normalizePath(relative)
return convertPathToPosix(normalizePath(relative))
}
const convertPathToPosix = (pathName: string): string => {
return pathName.split(pathModule.sep).join(pathModule.posix.sep)
}
function normalizePath (path) {

Loading…
Cancel
Save