fix: nil browsing data in case error and walkdir instead of walk (#229)

* fix: nil browsing data in case error

Signed-off-by: Andrii Ursulenko <a.ursulenko@gmail.com>

* fix: ignore walk error, use walkdir instead of walk

---------

Signed-off-by: Andrii Ursulenko <a.ursulenko@gmail.com>
Co-authored-by: Andrii Ursulenko <a.ursulenko@gmail.com>
This commit is contained in:
Andrii Ursulenko
2023-07-10 12:53:13 +03:00
committed by GitHub
parent a2c3cd1090
commit ab4d3e14db
3 changed files with 15 additions and 21 deletions
+1
View File
@@ -53,6 +53,7 @@ func Execute() {
data, err := b.BrowsingData(isFullExport)
if err != nil {
log.Error(err)
continue
}
data.Output(outputDir, b.Name(), outputFormat)
}