From 0c2d81350ed4446519e09884a9ff0f3d2fbbe5e9 Mon Sep 17 00:00:00 2001 From: nightwing Date: Mon, 22 Jun 2015 13:46:30 +0000 Subject: [PATCH] fix +7764 Runners do not work with tmux 2.0 --- node_modules/vfs-local/localfs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node_modules/vfs-local/localfs.js b/node_modules/vfs-local/localfs.js index 5bad28f3..43d98381 100644 --- a/node_modules/vfs-local/localfs.js +++ b/node_modules/vfs-local/localfs.js @@ -1923,7 +1923,7 @@ module.exports = function setup(fsOptions) { meta.pty.emit("data", err); } - else if (data.indexOf("Set option") > -1) { + else if (data) { // Fetch the PID if appropriate if (options.detach && options.output) { fetchPid(function(err, pid){