mirror of
https://github.com/Codeux-Software/Textual.git
synced 2026-06-16 13:24:32 +00:00
21 lines
604 B
Plaintext
Executable File
21 lines
604 B
Plaintext
Executable File
|
|
echo "Build Finale Package - Start"
|
|
|
|
# *****************************************************
|
|
# STANDALONE
|
|
# *****************************************************
|
|
|
|
productbuild \
|
|
--distribution distribution.plist \
|
|
--resources "./Installer Resources" \
|
|
--package-path "${PACKAGES_DESTINATION}/STANDALONE/" \
|
|
--sign "Developer ID Installer: Codeux Software, LLC (8482Q6EPL6)" \
|
|
--identifier "com.codeux.app-extensions.textual-extras-installer" \
|
|
--version "1.0" \
|
|
--quiet \
|
|
"${PACKAGES_DESTINATION}/Textual-Extras.pkg"
|
|
|
|
rm -f "${PACKAGES_DESTINATION}/STANDALONE/*.pkg"
|
|
|
|
echo "Build Finale Package - End"
|