Skip to content

Commit

Permalink
Change type from int to string (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
tothszabi authored Feb 12, 2024
1 parent 5796361 commit 1d9e8b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion step/step.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ func updateVersionNumbersInInfoPlist(helper *projectmanager.ProjectHelper, targe
absoluteInfoPlistPath := filepath.Join(filepath.Dir(helper.XcProj.Path), infoPlistPath)

infoPlist, format, _ := xcodeproj.ReadPlistFile(absoluteInfoPlistPath)
infoPlist["CFBundleVersion"] = bundleVersion
infoPlist["CFBundleVersion"] = strconv.Itoa(bundleVersion)

if shortVersion != "" {
infoPlist["CFBundleShortVersionString"] = shortVersion
Expand Down

0 comments on commit 1d9e8b7

Please sign in to comment.