From fc4722e8a0fe72670c1284ac01a14373c5224cfe Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Fri, 9 Jul 2021 07:54:00 +0200 Subject: [PATCH] Tweak --- bin/check-for-updates | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bin/check-for-updates b/bin/check-for-updates index bf38c67..970861b 100755 --- a/bin/check-for-updates +++ b/bin/check-for-updates @@ -23,7 +23,10 @@ $repositories = [ ]; foreach ($repositories as $repository) { - print 'Checking ' . $repository . ' ... '; + printf( + 'Checking %-26s ', + $repository . ' ...' + ); $file = __DIR__ . '/.revisions/' . $repository; $old = trim(file_get_contents($file));