Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -392,6 +392,15 @@ fi
log_debug "Detected format '$format'"

gpgv_binary="$(command -v gpgv || true)";
# Fallback to common paths if command -v fails (e.g., in Docker builds where PATH isn't updated)
if [ ! -x "$gpgv_binary" ]; then
for path in /usr/bin/gpgv /bin/gpgv /usr/local/bin/gpgv; do
if [ -x "$path" ]; then
gpgv_binary="$path"
break
fi
done
fi
if [ -x "$gpgv_binary" ]; then
log_debug "Using $gpgv_binary for signature verification"
else
Expand Down
Loading