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
Can we have an option to force identity validation for code signing on mac applications?
In electron-osx-sign 0.4.5, it has been switched to use the identity hash instead of the identity name in order to fix this issue.
electron-osx-sign 0.4.5
However, it only works when identity-validation is set to true. See the below code segments.
identity-validation
findIdentitiesAsync
true
findIdentitiesAsync()
new Identity()
false
As a result, making the identity name being used instead of the identity hash, which produce the error mentioned in this issue again.
Thanks a lot.
The text was updated successfully, but these errors were encountered:
ee90ff2
Successfully merging a pull request may close this issue.
Can we have an option to force identity validation for code signing on mac applications?
In
electron-osx-sign 0.4.5
, it has been switched to use the identity hash instead of the identity name in order to fix this issue.However, it only works when
identity-validation
is set to true. See the below code segments.findIdentitiesAsync
whenidentity-validation
istrue
.findIdentitiesAsync()
will return the identity with its hash,new Identity()
will not.identity-validation
is hardcoded asfalse
.As a result, making the identity name being used instead of the identity hash, which produce the error mentioned in this issue again.
Thanks a lot.
The text was updated successfully, but these errors were encountered: