aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/man-dates.sh
diff options
context:
space:
mode:
authorBrian Behlendorf <[email protected]>2021-06-09 12:21:24 -0700
committerBrian Behlendorf <[email protected]>2021-06-10 10:50:16 -0700
commit1180d61152ff71f0d6d1406bf24b6108b4759e52 (patch)
treeb4561d010dfd4109dfd6b17714e35120fe40f409 /scripts/man-dates.sh
parent6ce97bb4a288cd0fa14b4f9690ebc70575a93d02 (diff)
Fix minor shellcheck 0.7.2 warnings
The first warning of a misspelling is a false positive, so we annotate the script accordingly. As for the x-prefix warnings update the check to use the conventional '[ -z <string> ]' syntax. all-syslog.sh:46:47: warning: Possible misspelling: ZEVENT_ZIO_OBJECT may not be assigned, but ZEVENT_ZIO_OBJSET is. [SC2153] make_gitrev.sh:53:6: note: Avoid x-prefix in comparisons as it no longer serves a purpose [SC2268] man-dates.sh:10:7: note: Avoid x-prefix in comparisons as it no longer serves a purpose [SC2268] Reviewed-by: Ahelenia ZiemiaƄska <[email protected]> Reviewed-by: John Kennedy <[email protected]> Signed-off-by: Brian Behlendorf <[email protected]> Closes #12208
Diffstat (limited to 'scripts/man-dates.sh')
-rwxr-xr-xscripts/man-dates.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/man-dates.sh b/scripts/man-dates.sh
index 186d94639..39f1b5fb1 100755
--- a/scripts/man-dates.sh
+++ b/scripts/man-dates.sh
@@ -7,6 +7,6 @@ set -eu
find man -type f | while read -r i ; do
git_date=$(git log -1 --date=short --format="%ad" -- "$i")
- [ "x$git_date" = "x" ] && continue
+ [ -z "$git_date" ] && continue
sed -i "s|^\.Dd.*|.Dd $(date -d "$git_date" "+%B %-d, %Y")|" "$i"
done