From c8ab36a56070a20f47fca5c95c60257528fb97da Mon Sep 17 00:00:00 2001 From: dadada Date: Tue, 31 May 2022 17:55:19 +0200 Subject: [PATCH] clean at the end --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index e461645..4624b95 100644 --- a/main.go +++ b/main.go @@ -203,8 +203,6 @@ func main() { } wg.Wait() - tree.Clean(&git.CleanOptions{Dir: true}) - auth := &githttp.BasicAuth{ Username: *username, Password: *password, @@ -223,4 +221,6 @@ func main() { log.Println("Pushed changes to remote") } } + + tree.Clean(&git.CleanOptions{Dir: true}) }