We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mac Developer certificates are now on the form Apple Development: instead of Mac Developer:, causing the code sign update script to fail.
Apple Development:
Mac Developer:
It can be fixed by updating the macDeveloper function as follows:
macDeveloper
if ! [[ ${macDeveloperCN} =~ ^Apple\ Development:\ .*\ \([A-Z0-9]{10}\)$ ]]; then printf "%s\n" "Invalid Mac Developer CN: ${macDeveloperCN}" exit 1 fi
The text was updated successfully, but these errors were encountered:
Thank for the fix 🌮. I was stuck on it for a day 😱
Sorry, something went wrong.
Or you can use this if statement if you need it to work on both of and new names:
if ! [[ ${macDeveloperCN} =~ ^Mac\ Developer:\ .*\ \([A-Z0-9]{10}\)$ ]] && ! [[ ${macDeveloperCN} =~ ^Apple\ Development:\ .*\ \([A-Z0-9]{10}\)$ ]]; then
No branches or pull requests
Mac Developer certificates are now on the form
Apple Development:
instead ofMac Developer:
, causing the code sign update script to fail.It can be fixed by updating the
macDeveloper
function as follows:The text was updated successfully, but these errors were encountered: