5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-05 04:31:26 +08:00

fix syso icon generation (#3675)

update changelog.md
This commit is contained in:
Atterpac 2024-08-09 14:26:37 -07:00 committed by GitHub
parent d405bd48f0
commit cfab21bc81
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View File

@ -17,6 +17,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [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 ## v3.0.0-alpha.6 - 2024-07-30
### Fixed ### Fixed

View File

@ -44,7 +44,7 @@ func GenerateSyso(options *SysoOptions) (err error) {
} }
defer func() { defer func() {
err2 := iconFile.Close() err2 := iconFile.Close()
if err == nil { if err2 != nil {
err = errors.Wrap(err, "error closing icon file: "+err2.Error()) err = errors.Wrap(err, "error closing icon file: "+err2.Error())
} }
}() }()