summaryrefslogtreecommitdiff
path: root/shell.go
diff options
context:
space:
mode:
Diffstat (limited to 'shell.go')
-rw-r--r--shell.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/shell.go b/shell.go
index ae741e3..ca9d6b1 100644
--- a/shell.go
+++ b/shell.go
@@ -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