Posts

Post not yet marked as solved
2 Replies
Thanks for the reminder! I had attempted to notarize the app directly just to see if there was a difference in the notarization response; that is, I wanted to see if something we were doing to build the installer was altering the application enough to invalidate the signatures.As it turns out, that was exactly what was happening. Had a script at one point that attempted to copy the .app file (directory) with a "cp -r" command (to put the app in another directory before running pkgbuild, etc.) which, in hindsight, is an obvious mistake. Replaced that (temporarily) with an "mv" command which then resulted in a successful notarization of the Installer .pkg file. I don't think we really need to move the file out of the build directory to build the installer anyway, so I'll be re-writing the script before our next official build.Thanks!--Ron D