X-Git-Url: https://git.r.bdr.sh/rbdr/mobius/blobdiff_plain/d7548c16cdbff6f9baa2f545eb808030a6b3ec2e..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 }