[source] scripts/feeds: use 10 chars for feed name column width
LEDE Commits
lede-commits at lists.infradead.org
Thu Nov 3 00:35:10 PDT 2016
blogic pushed a commit to source.git, branch master:
https://git.lede-project.org/a2944a0c09b8486878482590b3409a3c0c710591
commit a2944a0c09b8486878482590b3409a3c0c710591
Author: Rafał Miłecki <rafal at milecki.pl>
AuthorDate: Wed Nov 2 15:02:53 2016 +0100
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 <rafal at milecki.pl>
---
scripts/feeds | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/feeds b/scripts/feeds
index 045835c..d1f3824 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;
More information about the lede-commits
mailing list