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
Unknown Object (File)
Wed, Oct 29, 7:17 PM
Unknown Object (File)
Tue, Oct 28, 1:34 PM
Unknown Object (File)
Mon, Oct 27, 3:21 AM
Unknown Object (File)
Sun, Oct 26, 1:33 PM
Unknown Object (File)
Sun, Oct 26, 7:36 AM
Unknown Object (File)
Sat, Oct 25, 3:36 PM
Unknown Object (File)
Fri, Oct 24, 11:26 AM
Unknown Object (File)
Thu, Oct 23, 2:08 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