From 1e7dc8e02310ec7f9056cd606ac8435b317ed92d Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Thu, 20 Oct 2022 08:43:14 +0000 Subject: [PATCH] lei_mirror: delimit names by `\n' to improve die message Attempting to clone a top-level manifest should work, eventually. But for now, make the list of git repos more readable. --- lib/PublicInbox/LeiMirror.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/PublicInbox/LeiMirror.pm b/lib/PublicInbox/LeiMirror.pm index 1dbd4d0a..ed8e4842 100644 --- a/lib/PublicInbox/LeiMirror.pm +++ b/lib/PublicInbox/LeiMirror.pm @@ -402,7 +402,7 @@ EOM clone_v1($self); } else { die "E: confused by <$uri>, possible matches:\n\t", - join(', ', sort keys %$m), "\n"; + join("\n\t", sort keys %$m), "\n"; } if (delete $self->{-culled_manifest}) { # set by clone_v2 # write the smaller manifest if epochs were skipped so -- 2.48.1