-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
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
Code signing script needs update #109
Comments
Thanks @OskarGroth I'll look into this. |
@OskarGroth I am still having issues with this even after changing the script. Not sure if it's still the same issue. https://travis-ci.org/brightdigit/Speculid/builds/640931671 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Not using this software, but ran into the same problem and thought I'd drop a hint.
The
CodeSigningUpdate
(https://github.com/brightdigit/Speculid/blob/12ef69622a6940f75201f4767566a79345146ff2/scripts/CodeSignUpdate.sh) script is failing on Xcode 11 because Mac Developer certificates are now on the formApple Development:
instead ofMac Developer:
.You incorrectly fixed this by commenting out
set
36ff4be#diff-de6b762ded769596e652fd6f22b5e3af which causes the script to finish despite the errors, but the error still occur and as a result yourInfo.plist
is borked:Speculid/applications/mac/Info.plist
Line 36 in 36ff4be
Instead, the error can be fixed correctly by updating the scripts
macDeveloper
function as follows:The text was updated successfully, but these errors were encountered: