From 8dd47d59e3e37b91111154c2b25d018437c3cab9 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Mon, 16 Dec 2024 00:21:32 -0600 Subject: [PATCH] oops --- main.go | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/main.go b/main.go index c30b73a..e303214 100644 --- a/main.go +++ b/main.go @@ -6,7 +6,6 @@ import ( "fmt" "os" "path/filepath" - "strings" "go.wit.com/dev/alexflint/arg" "go.wit.com/gui" @@ -112,16 +111,12 @@ func main() { } } - pwd, _ := os.Getwd() - basedir := strings.TrimPrefix(pwd, me.forge.GetGoSrc()) - basedir = strings.Trim(basedir, "/") - me.startRepo = me.forge.Repos.FindByGoPath(basedir) - // todo: add this to forgepb me.startRepo = me.forge.FindWorkingDirRepo() if me.startRepo == nil { - msg := fmt.Sprint("Can not run if pwd is not a repo", basedir) + pwd, _ := os.Getwd() + msg := fmt.Sprint("Can not run if pwd is not a repo", pwd) badExit(errors.New(msg)) } me.Enable()