diff options
| author | Jeff Carr <[email protected]> | 2024-12-17 07:03:17 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-17 07:03:17 -0600 |
| commit | 3d22172fa9b58a03bb59aba0b9c730d31ec2ff3f (patch) | |
| tree | 811a3eaa998e4a9c38fa3d517240bb409b386685 /releaseBox.go | |
| parent | 8dd47d59e3e37b91111154c2b25d018437c3cab9 (diff) | |
fixes for new gitpb
Diffstat (limited to 'releaseBox.go')
| -rw-r--r-- | releaseBox.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/releaseBox.go b/releaseBox.go index fc057b9..b73f7e4 100644 --- a/releaseBox.go +++ b/releaseBox.go @@ -104,7 +104,7 @@ func createReleaseBox(box *gui.Node) { grid.NewButton("whitelist", func() { // tmp := me.current.GoState() - log.Info("trying to whitelist repo", me.current.GoPath()) + log.Info("trying to whitelist repo", me.current.GetGoPath()) me.current.Status.Whitelist = true findNext() }) @@ -201,12 +201,12 @@ func createReleaseBox(box *gui.Node) { continue } if repo.Status.Whitelist { - log.Warn("skipping whitelist", repo.GoPath()) + log.Warn("skipping whitelist", repo.GetGoPath()) continue } good, files := repo.Status.GitLsFiles() if !good { - log.Warn("Something went wrong", repo.GoPath()) + log.Warn("Something went wrong", repo.GetGoPath()) continue } for _, filename := range strings.Split(files, "\n") { |
