summaryrefslogtreecommitdiffstats
path: root/lib/private/Installer.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-05-02 09:22:26 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2016-05-02 09:22:26 +0200
commit5e055ca6c1837a762aed7fe1e09b3a834fd50f20 (patch)
tree1daa3456cc68ad314b05ee2bb0e3519caa213acf /lib/private/Installer.php
parentb0211a54c43187602dde314a3ec990af11595190 (diff)
downloadnextcloud-server-5e055ca6c1837a762aed7fe1e09b3a834fd50f20.tar.gz
nextcloud-server-5e055ca6c1837a762aed7fe1e09b3a834fd50f20.zip
Move uninstall repair step execution to the correct place
Diffstat (limited to 'lib/private/Installer.php')
-rw-r--r--lib/private/Installer.php5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/private/Installer.php b/lib/private/Installer.php
index cc80423b7dc..643590ae22e 100644
--- a/lib/private/Installer.php
+++ b/lib/private/Installer.php
@@ -493,11 +493,6 @@ class Installer {
*/
public static function removeApp($appId) {
- $appData = OC_App::getAppInfo($appId);
- if (!is_null($appData)) {
- OC_App::executeRepairSteps($appId, $appData['repair-steps']['uninstall']);
- }
-
if(Installer::isDownloaded( $appId )) {
$appDir=OC_App::getInstallPath() . '/' . $appId;
OC_Helper::rmdirr($appDir);