Skip to content

Commit

Permalink
fix syso icon generation (#3675)
Browse files Browse the repository at this point in the history
update changelog.md
  • Loading branch information
atterpac authored Aug 9, 2024
1 parent d405bd4 commit cfab21b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions mkdocs-website/docs/en/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion v3/internal/commands/syso.go
Original file line number Diff line number Diff line change
Expand Up @@ -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())
}
}()
Expand Down

0 comments on commit cfab21b

Please sign in to comment.