Fix appicon bug on Mac. Fixes #1143

This commit is contained in:
Lea Anthony
2022-02-12 20:48:43 +11:00
parent e068e0f2f5
commit eb0f22b4ee
+5 -1
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
}