]> Savannah Git Hosting - gnulib.git/commitdiff
check-copyright: Make output prettier.
authorBruno Haible <bruno@clisp.org>
Tue, 7 Feb 2023 12:17:08 +0000 (13:17 +0100)
committerBruno Haible <bruno@clisp.org>
Tue, 7 Feb 2023 12:17:08 +0000 (13:17 +0100)
* check-copyright: Resize the second column from width 14 to width 17.

ChangeLog
check-copyright

index ddec3a97b388372de72c564729f4bf7e818637ed..f595810b68435d9b875f3f0925d22a29737894b1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2023-02-07  Bruno Haible  <bruno@clisp.org>
+
+       check-copyright: Make output prettier.
+       * check-copyright: Resize the second column from width 14 to width 17.
+
 2023-02-06  Bruno Haible  <bruno@clisp.org>
 
        setlocale-null: Don't use a lock in Cygwin >= 3.4.6.
index 727da142be16663d2335211f98064f3823939e18..ee173c2595dd6f0e50d7cf08de3635f3694b07cf 100755 (executable)
@@ -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