From: Bruno Haible Date: Tue, 7 Feb 2023 12:17:08 +0000 (+0100) Subject: check-copyright: Make output prettier. X-Git-Tag: v1.0~1703 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=67573880e699873ed05f8a784cb9937fb1156ed4;p=gnulib.git check-copyright: Make output prettier. * check-copyright: Resize the second column from width 14 to width 17. --- diff --git a/ChangeLog b/ChangeLog index ddec3a97b3..f595810b68 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2023-02-07 Bruno Haible + + check-copyright: Make output prettier. + * check-copyright: Resize the second column from width 14 to width 17. + 2023-02-06 Bruno Haible setlocale-null: Don't use a lock in Cygwin >= 3.4.6. diff --git a/check-copyright b/check-copyright index 727da142be..ee173c2595 100755 --- a/check-copyright +++ b/check-copyright @@ -171,10 +171,10 @@ for file in $candidates; do done if test "$file_license" != "$weakest_license"; then if test $error = 0; then - echo "Module License File License File name" - echo "================= ============== =====================================" + echo "Module License File License File name" + echo "================= ================= =====================================" fi - printf '%-17s %-14s %s\n' "$weakest_license" "$file_license" "$file" + printf '%-17s %-17s %s\n' "$weakest_license" "$file_license" "$file" error=1 fi done