diff --git a/pkg/helpers.js b/pkg/helpers.js index c41e4e0..fa5f03e 100644 --- a/pkg/helpers.js +++ b/pkg/helpers.js @@ -45,7 +45,7 @@ const is_wsl = // transform a wsl filepath to its relative windows filepath if necessary. function realpath(hack_path) { - if (!is_wsl) return hack_path; + if (!is_wsl) return hack_path.replace(/\\/g, '/'); hack_path = fs.realpathSync(hack_path); if (hack_path.startsWith('/mnt/')) { hack_path = `${hack_path[5].toUpperCase()}:${hack_path.slice(6)}`;