mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-14 22:55:48 +01:00
fix shadowed err (#718)
This commit is contained in:
parent
f5912d29b6
commit
31cf04a944
1 changed files with 1 additions and 1 deletions
|
|
@ -150,7 +150,7 @@ func processApplicationIcon(resourceDir string, iconsDir string) (err error) {
|
|||
// Install default icon if one doesn't exist
|
||||
if !fs.FileExists(appIcon) {
|
||||
// No - Install default icon
|
||||
err := buildassets.RegenerateAppIcon(appIcon)
|
||||
err = buildassets.RegenerateAppIcon(appIcon)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue