Fixed error in Windows when server is restarted then the run button is clicked in the output pane from a previous run.

pull/299/head
Chris Brown 2015-12-01 13:57:03 +00:00 zatwierdzone przez nightwing
rodzic b20805f86e
commit da07e791ec
1 zmienionych plików z 1 dodań i 1 usunięć

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

@ -2094,7 +2094,7 @@ module.exports = function setup(fsOptions) {
// Kill the session with the same name before starting a new one
if (options.kill) {
session = sessions[options.session];
if (session)
if (session && session.pty)
session.pty.kill();
if (!options.command)