diff options
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") { |
