From: Rafał Miłecki Date: Wed, 2 Nov 2016 14:02:53 +0000 (+0100) Subject: scripts/feeds: use 10 chars for feed name column width X-Git-Tag: v17.01.2~1352 X-Git-Url: http://git.ozo.com/?p=lede-git%2F.git;a=commitdiff_plain;h=a2944a0c09b8486878482590b3409a3c0c710591 scripts/feeds: use 10 chars for feed name column width It's always hard to find a reasonable width that will make everyone happy. This one at least makes "telephony" (one of default feeds) name fit the column and hopefully isn't too big. Signed-off-by: Rafał Miłecki --- diff --git a/scripts/feeds b/scripts/feeds index 045835c0cc..d1f3824057 100755 --- a/scripts/feeds +++ b/scripts/feeds @@ -354,7 +354,7 @@ sub list { printf "%s %s %s\n", $feed->[0], $feed->[1], $uri; } else { - printf "\%-8s \%-8s \%-8s \%s\n", $feed->[1], $feed->[0], $revision, join(", ", @{$feed->[2]}); + printf "\%-10s \%-8s \%-8s \%s\n", $feed->[1], $feed->[0], $revision, join(", ", @{$feed->[2]}); } } return 0;