Skip to content

Commit

Permalink
fix bug No codesigning certificates found, #49 && #16 (#170)
Browse files Browse the repository at this point in the history
Co-authored-by: Hu, Yuping <[email protected]>
  • Loading branch information
DavidWanderer and Hu, Yuping authored Nov 4, 2024
1 parent 27eead3 commit 30d63bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AppSigner/MainView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ class MainView: NSView, URLSessionDataDelegate, URLSessionDelegate, URLSessionDo

@objc func getCodesigningCerts() -> [String] {
var output: [String] = []
let securityResult = Process().execute(securityPath, workingDirectory: nil, arguments: ["find-identity","-v","-p","codesigning"])
let securityResult = Process().execute(securityPath, workingDirectory: nil, arguments: ["find-identity","-v","-p","appleID"])
if securityResult.output.count < 1 {
return output
}
Expand Down

0 comments on commit 30d63bf

Please sign in to comment.