remove workaround for broken escaping in old ptyjs on windows

pull/125/merge
nightwing 2017-04-30 21:35:57 +04:00
rodzic 5398d3819b
commit 4f3f3e8220
1 zmienionych plików z 1 dodań i 4 usunięć

5
node_modules/vfs-local/localfs.js wygenerowano vendored
Wyświetl plik

@ -2214,10 +2214,7 @@ module.exports = function setup(fsOptions) {
}
if (options.command) {
args.push("-c", "nodosfilewarning=1;" + options.command);
var cmd = args[args.length - 1];
args[args.length - 1] = '"' + cmd.replace(/"/g, '\\"') + '"';
args.push("-c", (isWin ? "nodosfilewarning=1;": "") + options.command);
}
run();