mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-04 23:41:38 +08:00
parent
d405bd48f0
commit
cfab21bc81
@ -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
|
||||||
|
@ -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())
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
Loading…
Reference in New Issue
Block a user