You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.
Issue: When I provide an invalid developer ID cert (oops), gon successfully completes and doesn't return an error. The log file shows a warning with the following under issues:
"issues": [
{
"severity": "warning",
"code": null,
"path": "terraform",
"message": "The binary is not signed with a valid Developer ID certificate.",
"docUrl": null,
"architecture": "x86_64"
}
]
IMO this is a fatal error, as the resulting executables can't be opened on OSX 10.15.
Solution: Exit gon and return an error if this 'warning' appears in the log file.
The text was updated successfully, but these errors were encountered:
Other messages under "issues" with "severity":"warning" that are fatal:
"The signature of the binary is invalid", "The signature does not include a secure timestamp."
As noted in the logs they're just warnings and not errors. Regardless, I think its a useful enhancement to download that log file and parse this and show the user.
Issue: When I provide an invalid developer ID cert (oops), gon successfully completes and doesn't return an error. The log file shows a warning with the following under
issues
:IMO this is a fatal error, as the resulting executables can't be opened on OSX 10.15.
Solution: Exit gon and return an error if this 'warning' appears in the log file.
The text was updated successfully, but these errors were encountered: