diff options
-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.$$ ] && \ |