summaryrefslogtreecommitdiff
path: root/check-copyright
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2023-02-07 13:17:08 +0100
committerBruno Haible <bruno@clisp.org>2023-02-07 13:17:08 +0100
commit67573880e699873ed05f8a784cb9937fb1156ed4 (patch)
tree9d1ceeb6094b426e85604530da49cfa79c2f62df /check-copyright
parent6ffba6a32b3bfa13589a6b3e7489ee00a7354db2 (diff)
downloadgnulib-67573880e699873ed05f8a784cb9937fb1156ed4.tar.gz
check-copyright: Make output prettier.
* check-copyright: Resize the second column from width 14 to width 17.
Diffstat (limited to 'check-copyright')
-rwxr-xr-xcheck-copyright6
1 files changed, 3 insertions, 3 deletions
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