mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 05:09:03 +00:00
patch escape slashes in realpath
This commit is contained in:
parent
606f6e6325
commit
72236295e3
@ -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)}`;
|
||||
|
Loading…
Reference in New Issue
Block a user