Fix appicon bug on Mac. Fixes #1143

This commit is contained in:
Lea Anthony 2022-02-12 20:48:43 +11:00
commit eb0f22b4ee
No known key found for this signature in database
GPG key ID: 33DAF7BB90A58405

View file

@ -115,7 +115,11 @@ func packageApplicationForDarwin(options *Options) error {
}
// Generate Icons
err = processApplicationIcon(resourceDir, options.ProjectData.Path)
buildDir, err := getBuildBaseDirectory(options)
if err != nil {
return err
}
err = processApplicationIcon(resourceDir, buildDir)
if err != nil {
return err
}