DEV Community

Discussion on: How to add auto-update feature in macOS app: Step by Step guide to setup Sparkle framework (Part 2)

Collapse
 
cool8jay profile image
cool8jay

A tip for someone that may meet codesign issue.

The script in project "SparkleSetupGuide" works fine on my Mac, but my own project gives a warning, saying "no identity found". After some research, I replace the line

IDENTITY=${EXPANDED_CODE_SIGN_IDENTITY_NAME}

with

IDENTITY="-"

and everything works.

Collapse
 
prashant profile image
Prashant Nigam

Thanks for the Tip