summaryrefslogtreecommitdiff
path: root/shell.go
diff options
context:
space:
mode:
Diffstat (limited to 'shell.go')
-rw-r--r--shell.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/shell.go b/shell.go
index 18aef05..ae741e3 100644
--- a/shell.go
+++ b/shell.go
@@ -60,6 +60,7 @@ func (repo *Repo) Exists(filename string) bool {
testf := filepath.Join(repo.FullPath, filename)
_, err := os.Stat(testf)
if err != nil {
+ log.Warn("gitpb: Exists() failed for", testf)
return false
}
return true