diff --git a/fs/fs.go b/fs/fs.go index 5fb4725..5fc57f4 100644 --- a/fs/fs.go +++ b/fs/fs.go @@ -70,6 +70,9 @@ func (fs *Fs) ProjectFilepaths() ([]string, error) { continue } itemName := item.Name() + if strings.HasPrefix(itemName, ".") { + continue + } if strings.HasSuffix(itemName, ".bak") { continue } @@ -97,6 +100,9 @@ func (fs *Fs) ProjectBackupFilepaths() ([]string, error) { continue } itemName := item.Name() + if strings.HasPrefix(itemName, ".") { + continue + } if !strings.HasSuffix(itemName, ".bak") { continue } @@ -157,6 +163,9 @@ func (fs *Fs) RecordFilepaths(dir string, less func(a, b string) bool) ([]string continue } itemName := item.Name() + if strings.HasPrefix(itemName, ".") { + continue + } if strings.HasSuffix(itemName, ".bak") { continue } diff --git a/timetrace b/timetrace index 7839be1..ca01895 100755 Binary files a/timetrace and b/timetrace differ