patch escape slashes in realpath

This commit is contained in:
dragonwocky 2020-08-11 09:43:11 +10:00
parent 606f6e6325
commit 72236295e3
Signed by: dragonwocky
GPG Key ID: C7A48B7846AA706D

View File

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