diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2017-10-30 11:23:17 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2017-10-30 11:23:17 +0000 |
commit | 47ceacdd9d2160571359fc1dc3e5f9d821a5e541 (patch) | |
tree | 908a29130f98ed50bc52e90c1a8a66b6405ecfbe /Tools | |
parent | 312d393384933b73e29a4a27082c23d8104c8bd0 (diff) | |
download | ports-47ceacdd9d2160571359fc1dc3e5f9d821a5e541.tar.gz ports-47ceacdd9d2160571359fc1dc3e5f9d821a5e541.zip |
Notes
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/scripts/MOVEDlint.awk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/scripts/MOVEDlint.awk b/Tools/scripts/MOVEDlint.awk index 79960dd922bc..e5f4d94110ee 100755 --- a/Tools/scripts/MOVEDlint.awk +++ b/Tools/scripts/MOVEDlint.awk @@ -86,10 +86,10 @@ $3 !~ /^20[0-3][0-9]-[01][0-9]-[0-3][0-9]$/ { # Produces too many false positives # if ($4 ~ /^[a-z].*/) -# printf "Initial value of 'reason' is lowercase: %5d (%s)\n", NR, $4 +# printf "Initial value of 'reason' is lowercase: %5d (%s)\n", NR, $4 | sort if ($4 ~ /\.$/) - printf "%5d: Final character is a dot: (%s)\n", NR, $4 + printf "%5d: Final character is a dot: (%s)\n", NR, $4 | sort } END { |