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, Apr 29, 2:29 PM
Unknown Object (File)
Tue, Apr 28, 7:38 PM
Unknown Object (File)
Tue, Apr 28, 7:29 PM
Unknown Object (File)
Apr 15 2026, 8:25 PM
Unknown Object (File)
Apr 15 2026, 8:19 PM
Unknown Object (File)
Apr 7 2026, 1:07 AM
Unknown Object (File)
Apr 6 2026, 5:33 AM
Unknown Object (File)
Apr 6 2026, 4:13 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