aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2023-06-17 14:18:59 -0400
committerB. Watson <urchlay@slackware.uk>2023-06-17 14:18:59 -0400
commit09b16b1ec52fa28ce861419b5b7415724779a8f0 (patch)
treec75bff70a4877231c06b95f65ff636acdaeaa2e2
parent827c41c3fe9de2d834597ff7196896a3d8d04488 (diff)
downloadsbo-maintainer-tools-09b16b1ec52fa28ce861419b5b7415724779a8f0.tar.gz
sbopkglint: docs nitpick.
-rw-r--r--sbopkglint.d/10-docs.t.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/sbopkglint.d/10-docs.t.sh b/sbopkglint.d/10-docs.t.sh
index f99a42a..912af64 100644
--- a/sbopkglint.d/10-docs.t.sh
+++ b/sbopkglint.d/10-docs.t.sh
@@ -41,7 +41,7 @@ if [ -d "$DOCDIR" ]; then
# embedded backslashes. doubt that will be a real problem.
find $DOCDIR -type f -perm /111 -print | while read f; do
head -1 "$f" | grep -q '^#!' && continue; # script file, +x is OK
- ls -ld "$f" >> .bad.$$
+ ls -bld "$f" >> .bad.$$
done
[ -s .bad.$$ ] && warn "bad file perms (should be 644, or at least 444) in doc dir:" && cat .bad.$$