X-Git-Url: https://git.r.bdr.sh/rbdr/mobius/blobdiff_plain/c26c20e3539233a6cde9e64aa9d9a89b2017a772..041c2df698d4702816cf8472d212553d289a2c0c:/hotline/files.go diff --git a/hotline/files.go b/hotline/files.go index 04334e9..e77f631 100644 --- a/hotline/files.go +++ b/hotline/files.go @@ -56,6 +56,9 @@ func getFileNameList(filePath string) (fields []Field, err error) { } rFile, err := os.Stat(filePath + "/" + resolvedPath) + if errors.Is(err, os.ErrNotExist) { + continue + } if err != nil { return fields, err }