This commit is contained in:
Jeff Carr 2024-12-16 00:21:32 -06:00
parent e76894265e
commit 8dd47d59e3
1 changed files with 2 additions and 7 deletions

View File

@ -6,7 +6,6 @@ import (
"fmt" "fmt"
"os" "os"
"path/filepath" "path/filepath"
"strings"
"go.wit.com/dev/alexflint/arg" "go.wit.com/dev/alexflint/arg"
"go.wit.com/gui" "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 // todo: add this to forgepb
me.startRepo = me.forge.FindWorkingDirRepo() me.startRepo = me.forge.FindWorkingDirRepo()
if me.startRepo == nil { 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)) badExit(errors.New(msg))
} }
me.Enable() me.Enable()