Skip to content

Commit

Permalink
gogio: fix darwin builds with custom schemes
Browse files Browse the repository at this point in the history
Signed-off-by: inkeliz <[email protected]>
  • Loading branch information
inkeliz committed Jun 3, 2024
1 parent f1c443a commit 3e8335e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions gogio/iosbuild.go
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ func buildInfoPlist(bi *buildInfo) (string, error) {
AppName string
AppID string
Version string
VersionCode uint32
VersionCode uint32
Platform string
MinVersion int
SupportPlatform string
Expand All @@ -320,7 +320,7 @@ func buildInfoPlist(bi *buildInfo) (string, error) {
AppName: appName,
AppID: bi.appID,
Version: bi.version.String(),
VersionCode: bi.version.VersionCode,
VersionCode: bi.version.VersionCode,
Platform: platform,
MinVersion: minIOSVersion,
SupportPlatform: supportPlatform,
Expand Down
2 changes: 1 addition & 1 deletion gogio/macosbuild.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ func (b *macBuilder) setInfo(buildInfo *buildInfo, name string) error {
manifestSrc := struct {
Name string
Bundle string
Version int
Version Semver
Schemes []string
}{
Name: name,
Expand Down

0 comments on commit 3e8335e

Please sign in to comment.