mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-14 22:55:48 +01:00
Fix appicon bug on Mac. Fixes #1143
This commit is contained in:
parent
e068e0f2f5
commit
eb0f22b4ee
1 changed files with 5 additions and 1 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue