From a63b7c9e9f20c801a691436c132cab09de3a0ded Mon Sep 17 00:00:00 2001 From: Austin Moses Date: Mon, 2 Feb 2026 15:06:41 -0700 Subject: [PATCH] Add search for gpgv_binary common install paths if not found --- scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100755 => 100644 scripts/install.sh diff --git a/scripts/install.sh b/scripts/install.sh old mode 100755 new mode 100644 index c35a2c85..e8b3b1f4 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -395,7 +395,7 @@ gpgv_binary="$(command -v gpgv || true)"; if [ -x "$gpgv_binary" ]; then log_debug "Using $gpgv_binary for signature verification" else - log "ERROR: Unable to find gpg binary for signature verification" + log "ERROR: Unable to find gpgv binary for signature verification" log "You can resolve this error by installing your system's gnupg package" clean_exit 3 fi