aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--repository/git.go5
-rw-r--r--repository/gogit.go5
2 files changed, 10 insertions, 0 deletions
diff --git a/repository/git.go b/repository/git.go
index 993e6cc6..bc9d8772 100644
--- a/repository/git.go
+++ b/repository/git.go
@@ -488,6 +488,11 @@ func (repo *GitRepo) GetLocalRemote() string {
// EraseFromDisk delete this repository entirely from the disk
func (repo *GitRepo) EraseFromDisk() error {
+ err := repo.Close()
+ if err != nil {
+ return err
+ }
+
path := filepath.Clean(strings.TrimSuffix(repo.path, string(filepath.Separator)+".git"))
// fmt.Println("Cleaning repo:", path)
diff --git a/repository/gogit.go b/repository/gogit.go
index 74fe3fc5..bdac259d 100644
--- a/repository/gogit.go
+++ b/repository/gogit.go
@@ -734,6 +734,11 @@ func (repo *GoGitRepo) GetLocalRemote() string {
// EraseFromDisk delete this repository entirely from the disk
func (repo *GoGitRepo) EraseFromDisk() error {
+ err := repo.Close()
+ if err != nil {
+ return err
+ }
+
path := filepath.Clean(strings.TrimSuffix(repo.path, string(filepath.Separator)+".git"))
// fmt.Println("Cleaning repo:", path)