kopia lustrzana https://github.com/c9/core
remove workaround for broken escaping in old ptyjs on windows
rodzic
5398d3819b
commit
4f3f3e8220
|
@ -2214,10 +2214,7 @@ module.exports = function setup(fsOptions) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (options.command) {
|
if (options.command) {
|
||||||
args.push("-c", "nodosfilewarning=1;" + options.command);
|
args.push("-c", (isWin ? "nodosfilewarning=1;": "") + options.command);
|
||||||
|
|
||||||
var cmd = args[args.length - 1];
|
|
||||||
args[args.length - 1] = '"' + cmd.replace(/"/g, '\\"') + '"';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
run();
|
run();
|
||||||
|
|
Ładowanie…
Reference in New Issue