(dir string)
| 163 | } |
| 164 | |
| 165 | func isDirectoryAGitRepository(dir string) (bool, error) { |
| 166 | info, err := os.Stat(filepath.Join(dir, ".git")) |
| 167 | return info != nil, err |
| 168 | } |
| 169 | |
| 170 | func openRecentRepo(app *App) bool { |
| 171 | for _, repoDir := range app.Config.GetAppState().RecentRepos { |
no outgoing calls
no test coverage detected