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

This commit is contained in:
Chris Brown 2015-12-01 13:57:03 +00:00 committed by nightwing
parent b20805f86e
commit da07e791ec

2
node_modules/vfs-local/localfs.js generated vendored
View File

@ -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)