Reputation: 2797
I wrote a page in python Django and implemented the upload certificate to automate the function of signing ipa.
I'm use /usr/bin/codesign to sign an application, but macOS 10.14 show confirm prompt,how to use Terminal without prompt , I want to automated sign in application with web application!
Can't use this method: Keychain Access to allow all applications to access keychain,Because I want to automate python Django
Upvotes: 1
Views: 573
Reputation: 1
you can try this with command line
security set-key-partition-list -S apple-tool:,apple: -s -k "keychainpassword" "keychainpath"
Upvotes: 0