From: Sergey Matveev <stargrave@stargrave.org>
Date: Fri, 18 Apr 2025 07:59:26 +0000 (+0300)
Subject: Place positional parameters first
X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=HEAD;p=meta4ra.git

Place positional parameters first
---

diff --git a/contrib/mk-meta4 b/contrib/mk-meta4
index 130766f..aeb9ba4 100755
--- a/contrib/mk-meta4
+++ b/contrib/mk-meta4
@@ -3,7 +3,7 @@
 ext=meta4
 opts="$@"
 hashes="${META4RA_HASHES:-`meta4ra-hashes-detect 2>/dev/null`}"
-find . -type f -maxdepth 1 -not -name "*.$ext" | while read f ; do
+find . -maxdepth 1 -type f -not -name "*.$ext" | while read f ; do
     f="${f#./}"
     [ "$f" != README ] || continue
     [ ! -s "$f.$ext" ] || continue