Skip to content

Commit

Permalink
fix for uninstalls
Browse files Browse the repository at this point in the history
  • Loading branch information
mchaptel committed May 25, 2021
1 parent 603de1c commit ac3af7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ExtensionStore/lib/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -966,7 +966,7 @@ LocalExtensionList.prototype.uninstall = function (extension) {

// Remove packages recursively as they have a parent directory.
if (extension.package.isPackage) {
var folder = new Dir(this.installFolder + "packages/" + extension.name.replace(" ", ""));
var folder = new Dir(this.installFolder + "/packages/" + extension.name.replace(" ", ""));
this.log.debug("removing folder " + folder.path);
if (folder.exists) folder.rmdirs();
} else {
Expand Down
2 changes: 1 addition & 1 deletion ExtensionStore/tbpackage.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ExtensionStore",
"version": "0.2.5",
"version": "0.2.6",
"compatibility": "Harmony Premium 16",
"description": "Changelog: Improved error handling during loading.",
"isPackage": "true",
Expand Down

0 comments on commit ac3af7b

Please sign in to comment.