aboutsummaryrefslogtreecommitdiff
path: root/src/phorkie/Repository.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/phorkie/Repository.php')
-rw-r--r--src/phorkie/Repository.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/phorkie/Repository.php b/src/phorkie/Repository.php
index 815ef5e..f45c76f 100644
--- a/src/phorkie/Repository.php
+++ b/src/phorkie/Repository.php
@@ -208,8 +208,13 @@ class Repository
$db = new Database();
$db->getIndexer()->deleteRepo($this);
- return Tools::recursiveDelete($this->workDir)
+ $bOk = Tools::recursiveDelete($this->workDir)
&& Tools::recursiveDelete($this->gitDir);
+
+ $not = new Notificator();
+ $not->delete($this);
+
+ return $bOk;
}
public function getTitle()