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