Skip to content

Commit bd57598

Browse files
Update Mac AppStore Guide to support app names containing spaces (#3923)
* Update Mac AppStore Guide to support app names containing spaces * Update changelog * Add author
1 parent 8deb8a0 commit bd57598

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

website/docs/guides/mac-appstore.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ wails build -platform darwin/universal -clean
8181

8282
cp ./embedded.provisionprofile "./build/bin/$APP_NAME.app/Contents"
8383

84-
codesign --timestamp --options=runtime -s "$APP_CERTIFICATE" -v --entitlements ./build/darwin/entitlements.plist ./build/bin/$APP_NAME.app
84+
codesign --timestamp --options=runtime -s "$APP_CERTIFICATE" -v --entitlements ./build/darwin/entitlements.plist "./build/bin/$APP_NAME.app"
8585

86-
productbuild --sign "$PKG_CERTIFICATE" --component ./build/bin/$APP_NAME.app /Applications ./$APP_NAME.pkg
86+
productbuild --sign "$PKG_CERTIFICATE" --component "./build/bin/$APP_NAME.app" /Applications "./$APP_NAME.pkg"
8787
```
8888

8989
#### Upload App Bundle

website/src/pages/changelog.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515
## [Unreleased]
1616
### Changed
1717
- Removed documentation references for 'The default module name in go.mod is "changeme". You should change this to something more appropriate.' as it appears to be no longer relevant.
18+
- Update script in Mac App Store guide to support app names containing spaces by @cristianrgreco
1819

1920
### Added
2021
- Added option to set window class name on Windows. Added in [PR](https://github.com/wailsapp/wails/pull/3828) by @APshenkin

0 commit comments

Comments
 (0)