Merge pull request #3903 from ethereum/remixdwindows

fix paths remixd windows
pull/3906/head
yann300 1 year ago committed by GitHub
commit 4dd6a56e73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  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