From f3f06655db503760e60898c0be5dbca4f1865548 Mon Sep 17 00:00:00 2001 From: Azareal Date: Wed, 4 Apr 2018 08:07:24 +0100 Subject: [PATCH] Fixed the worktree in the updater. --- updater/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/updater/main.go b/updater/main.go index 4a937568..ae6eaed5 100644 --- a/updater/main.go +++ b/updater/main.go @@ -41,9 +41,9 @@ func pressAnyKey(scanner *bufio.Scanner) { func updater(scanner *bufio.Scanner) error { fmt.Println("Welcome to Gosora's Upgrader") - fmt.Print("We're going to check for new updates, please wait patiently") + fmt.Println("We're going to check for new updates, please wait patiently") - repo, err := git.PlainOpen("./.git") + repo, err := git.PlainOpen(".") if err != nil { return err }