commit 0d7f52668b46aea4aa5200d88fe981ef33f8e352 parent 94d862a20fa220da8144a0f7bdc227869a9af801 Author: Jan Pobrislo <ccx@te2000.cz> Date: Tue, 6 May 2025 12:12:51 +0000 Exclude "hidden" files from filelist Diffstat:
| M | util/gen-filelist-sha256 | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/util/gen-filelist-sha256 b/util/gen-filelist-sha256 @@ -1,2 +1,2 @@ #!/bin/sh -busybox find "$@" -type f -print0 | busybox sort -z | busybox xargs -0r busybox sha256sum +busybox find "$@" -type f \( -name .\* -prune -o -print0 \) | busybox sort -z | busybox xargs -0r busybox sha256sum