refactor: return nil as i've no idea what that is doing

This commit is contained in:
decentral1se 2022-02-04 11:49:03 +01:00
parent a9dd56b31a
commit 312d760002
No known key found for this signature in database
GPG Key ID: 03789458B3D0C410

View File

@ -252,7 +252,7 @@ func distribusify(c *cli.Context, root string, ignore []string) error {
contents, err := ioutil.ReadDir(absPath)
if err != nil {
logrus.Debugf("unable to read %s", absPath)
return filepath.SkipDir
return nil
}
for _, content := range contents {