diff options
author | B. Watson <urchlay@slackware.uk> | 2023-06-17 04:56:43 -0400 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2023-06-17 04:56:43 -0400 |
commit | 074e5b4b87f09f7a7ee130d2344a0976abd4ba97 (patch) | |
tree | 7730b1d367764e1f2b19742dd86eb6f9a55f4df5 | |
parent | 695d606224bc3dae5a2aa96581d1af49310822b2 (diff) | |
download | sbo-maintainer-tools-074e5b4b87f09f7a7ee130d2344a0976abd4ba97.tar.gz |
sbopkglint: nitpick.
-rw-r--r-- | sbopkglint.d/15-noarch.t.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbopkglint.d/15-noarch.t.sh b/sbopkglint.d/15-noarch.t.sh index 1d4c0fc..69aa552 100644 --- a/sbopkglint.d/15-noarch.t.sh +++ b/sbopkglint.d/15-noarch.t.sh @@ -10,7 +10,7 @@ # for packages that aren't noarch, recommend noarch if it looks like one. # the recommendation is not an error! -find . -type f -print0 | xargs -0 file -m /etc/file/magic/elf | grep ELF | cut -d: -f1 | xargs -d "\n" ls -lb > .elfbins.$$ +find * -type f -print0 | xargs -0 file -m /etc/file/magic/elf | grep ELF | cut -d: -f1 | xargs -d "\n" ls -lb > .elfbins.$$ if [ "$ARCH" = "noarch" ]; then [ -s .elfbins.$$ ] && \ |