Skip to content

Removed version from the package name created by the Mac platform pac… #104

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 28, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package/mac_app_sign_and_package.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh --
#
# This script signs and packages a Mac OS X application bundle.
# The final package will be created as ../dist/|APP_NAME|-|VERSION|-setup-MacOS.pkg.
# The final package will be created as ../dist/|APP_NAME|-setup-MacOS.pkg.
#
# Requirements for this script are:
#
Expand Down Expand Up @@ -413,7 +413,7 @@ productbuild --distribution ${RESOURCES}${DIST_DST} \
--version $VERSION \
--package-path ${DISTRIBUTION} \
--sign "$INST_IDENTITY" \
${DISTRIBUTION}${APP_NAME}-${VERSION}-setup-MacOS.pkg
${DISTRIBUTION}${APP_NAME}-setup-MacOS.pkg

echo

Expand Down