diff options
Diffstat (limited to 'shell.go')
| -rw-r--r-- | shell.go | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -54,13 +54,11 @@ func (repo *Repo) strictRun(cmd []string) (bool, error) { func (repo *Repo) Exists(filename string) bool { if repo == nil { - log.Warn("repo == nil for Exists()") return false } testf := filepath.Join(repo.FullPath, filename) _, err := os.Stat(testf) if err != nil { - log.Warn("gitpb: Exists() failed for", testf) return false } return true |
