From: Marc Espie Subject: patch: very small QOL improvement in update-plist To: tb@openbsd.org Cc: ports@openbsd.org Date: Mon, 6 Jul 2026 10:03:22 +0200 Specifically, fullstring will append the / at the end of directory names, thus making them instantly recognizable. Index: update-plist =================================================================== RCS file: /vide/cvs/ports/infrastructure/bin/update-plist,v diff -u -p -r1.216 update-plist --- update-plist 18 Jan 2026 10:02:28 -0000 1.216 +++ update-plist 6 Jul 2026 08:02:26 -0000 @@ -644,7 +644,7 @@ 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"; } }