mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-14 14:45:49 +01:00
parent
d405bd48f0
commit
cfab21bc81
2 changed files with 4 additions and 1 deletions
|
|
@ -17,6 +17,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
### Fixed
|
||||
- [windows] Fixed syso icon file generation bug by [atterpac](https://github.com/atterpac) in [#3675](https://github.com/wailsapp/wails/pull/3675)
|
||||
|
||||
## v3.0.0-alpha.6 - 2024-07-30
|
||||
|
||||
### Fixed
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ func GenerateSyso(options *SysoOptions) (err error) {
|
|||
}
|
||||
defer func() {
|
||||
err2 := iconFile.Close()
|
||||
if err == nil {
|
||||
if err2 != nil {
|
||||
err = errors.Wrap(err, "error closing icon file: "+err2.Error())
|
||||
}
|
||||
}()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue