Skip to content

Commit 5d89600

Browse files
committed
fix(uninstall): actually fix uninstall this time
refs #220 - nothing to see here 🙈
1 parent 169f561 commit 5d89600

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/commands/uninstall.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ module.exports.execute = function execute() {
4242
let instances = systemConfig.get('instances', {})
4343
each(instances, (instance, pname) => {
4444
if (instance.cwd === process.cwd()) {
45-
delete systemConfig[pname];
45+
delete instances[pname];
4646
}
4747
});
4848
systemConfig.set('instances', instances).save();

0 commit comments

Comments
 (0)