From 2532f33ae4a4bce96dd99f0425d8b173ef6aff12 Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sun, 8 Oct 2023 16:57:54 -0700 Subject: sign-autobuilds: also ensure only using the file ascs, not symlinks Signed-off-by: Robin H. Johnson --- sign-autobuilds.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sign-autobuilds.sh b/sign-autobuilds.sh index cac8b7e..4832c0c 100755 --- a/sign-autobuilds.sh +++ b/sign-autobuilds.sh @@ -74,7 +74,7 @@ find_files_cmd=( ) files="$( "${find_files_cmd[@]}" )" -sigs="$(find autobuilds -name '*.asc' )" +sigs="$(find autobuilds -type f -name '*.asc' )" unsigned="$(comm -23 <(echo "$files" |sort) <(echo "$sigs" | sed -e 's,.asc$,,g' |sort))" #$VERBOSEP echo "=== ARCH: $a" -- cgit v1.2.3-65-gdbad