From: Theo Buehler Subject: Re: patch: very small QOL improvement in update-plist To: ports@openbsd.org Cc: marc.espie.openbsd@gmail.com Date: Mon, 6 Jul 2026 10:14:11 +0200 On Mon, Jul 06, 2026 at 10:03:22AM +0200, Marc Espie wrote: > Specifically, fullstring will append the / at the end of directory names, > thus making them instantly recognizable. I committed this version matching the already existing impl on line 161: Index: update-plist =================================================================== RCS file: /cvs/ports/infrastructure/bin/update-plist,v diff -u -p -r1.216 -r1.217 --- update-plist 18 Jan 2026 10:02:28 -0000 1.216 +++ update-plist 6 Jul 2026 08:12:40 -0000 1.217 @@ -644,7 +644,8 @@ sub known_directory($self, $o, $plist) sub show_unknown($self) { if (!$self->{found}) { - print "Not found: ", $self->fullname, " (in ", $self->{file}, ")\n"; + print "Not found: ", $self->fullstring, " (in ", + $self->{file}, ")\n"; } }