Skip to content

Commit

Permalink
fix(uninstall): actually fix uninstall this time
Browse files Browse the repository at this point in the history
refs #220
- nothing to see here πŸ™ˆ
  • Loading branch information
acburdine committed Jun 23, 2017
1 parent 169f561 commit 5d89600
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/commands/uninstall.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ module.exports.execute = function execute() {
let instances = systemConfig.get('instances', {})
each(instances, (instance, pname) => {
if (instance.cwd === process.cwd()) {
delete systemConfig[pname];
delete instances[pname];
}
});
systemConfig.set('instances', instances).save();
Expand Down

0 comments on commit 5d89600

Please sign in to comment.