Page MenuHomeFreeBSD

pkgbase: report errors via metalog reader exit status
ClosedPublic

Authored by emaste on Nov 23 2022, 9:42 PM.
Tags
None
Referenced Files
F102996596: D37482.diff
Tue, Nov 19, 3:22 PM
Unknown Object (File)
Tue, Nov 5, 11:17 AM
Unknown Object (File)
Sun, Oct 27, 6:07 AM
Unknown Object (File)
Oct 19 2024, 11:33 AM
Unknown Object (File)
Oct 18 2024, 5:59 AM
Unknown Object (File)
Oct 18 2024, 5:59 AM
Unknown Object (File)
Oct 18 2024, 5:59 AM
Unknown Object (File)
Oct 18 2024, 5:59 AM
Subscribers

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

emaste created this revision.
emaste added a reviewer: pkgbase.

I'm a bit of a lua novice, so if there's a canonical way to do this please let me know

kevans added inline comments.
tools/pkgbase/metalog_reader.lua
89

Drop the assignment, it'll default to nil which is a falsey value

159

return #duperr or #inodeerr, perhaps

Perhaps more idomatic lua from kevans

tools/pkgbase/metalog_reader.lua
159

Or actually return #duperr > 0 or #inodeerr > 0

This revision is now accepted and ready to land.Nov 25 2022, 3:23 AM