From 66d52c797a041038180d7596f916bbe5ead2349f Mon Sep 17 00:00:00 2001 From: johnhidey Date: Tue, 16 Dec 2014 19:16:26 -0500 Subject: [PATCH] Fixed but where spawn close event callback was erroring --- CHANGELOG.md | 3 +++ node/hdyShellDomain.js | 3 +-- package.json | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a6756ed..04e72de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ## Change Log +### v0.0.11 +* BUG: Fixed but where spawn close event callback was erroring + ### v0.0.10 * BUG: Added feature for being able to specify the shell to use resolves the one outstanding issue with running on the *nix platform * FEATURE: Updated *nix support for using different shells. The preference 'hdy.brackets-shell.shell is the string path diff --git a/node/hdyShellDomain.js b/node/hdyShellDomain.js index 4a5e29a..d2bfc8f 100644 --- a/node/hdyShellDomain.js +++ b/node/hdyShellDomain.js @@ -64,7 +64,6 @@ }); child.on("close", function () { - child.cwd child.kill(); _domainManager.emitEvent("hdyShellDomain", "close", [enddir]); }); @@ -94,7 +93,7 @@ function _init(domainManager) { if (!domainManager.hasDomain("hdyShellDomain")) { - domainManager.registerDomain("hdyShellDomain", {major: 0, minor: 2}); + domainManager.registerDomain("hdyShellDomain", {major: 0, minor: 3}); } domainManager.registerCommand( diff --git a/package.json b/package.json index cb81981..28adf40 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "hdy.brackets-shell", "title": "Brackets Shell", - "version": "0.0.10", + "version": "0.0.11", "description": "Shell access within Brackets. Want to run some shell command, install a node package, install from bower the list goes on and on. Well then, this extension is for you.", "homepage": "https://github.com/johnhidey/hdy.brackets-shell/", "repository": {