Merge pull request #20307 from Homebrew/signing-change

cask/audit: skip signing audit without gktool
This commit is contained in:
Bevan Kay 2025-07-25 09:13:28 +00:00 committed by GitHub
commit 02c643cdd3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -510,11 +510,9 @@ module Cask
when Artifact::Pkg
system_command("spctl", args: ["--assess", "--type", "install", path], print_stderr: false)
when Artifact::App
if which("gktool")
next opoo "gktool not found, skipping app signing audit" unless which("gktool")
system_command("gktool", args: ["scan", path], print_stderr: false)
else
system_command("spctl", args: ["--assess", "--type", "execute", path], print_stderr: false)
end
when Artifact::Binary
# Shell scripts cannot be signed, so we skip them
next if path.text_executable?