Skip to content

Commit

Permalink
Fixed but where spawn close event callback was erroring
Browse files Browse the repository at this point in the history
  • Loading branch information
johnhidey committed Dec 17, 2014
1 parent f8e4e49 commit 66d52c7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 3 additions & 0 deletions 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
Expand Down
3 changes: 1 addition & 2 deletions node/hdyShellDomain.js
Expand Up @@ -64,7 +64,6 @@
});

child.on("close", function () {
child.cwd
child.kill();
_domainManager.emitEvent("hdyShellDomain", "close", [enddir]);
});
Expand Down Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion 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": {
Expand Down

0 comments on commit 66d52c7

Please sign in to comment.