commit d0f74985381b153cb7b70c6bba27ff861e6f93b4 parent 51e151f1bf908d5709e082feacf603c607f241b4 Author: Steven Atkinson <steven@atkinson.mn> Date: Tue, 30 Jan 2024 20:06:47 -0800 Update distribution license (#433) * Update license and macOS installer * Add resources to productbuild Diffstat:
M | NeuralAmpModeler/installer/license.rtf | | | 0 | |
M | NeuralAmpModeler/scripts/makeinstaller-mac.sh | | | 4 | +++- |
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/NeuralAmpModeler/installer/license.rtf b/NeuralAmpModeler/installer/license.rtf Binary files differ. diff --git a/NeuralAmpModeler/scripts/makeinstaller-mac.sh b/NeuralAmpModeler/scripts/makeinstaller-mac.sh @@ -178,7 +178,9 @@ XMLEND # build installation bundle # --resources . -productbuild --distribution ${TARGET_DIR}/distribution.xml --package-path ${PKG_DIR} "${TARGET_DIR}/$OUTPUT_BASE_FILENAME" +TEMP_RESOURCES=$(mktemp -d) +cp ./installer/license.rtf ${TEMP_RESOURCES} +productbuild --resources ${TEMP_RESOURCES} --distribution ${TARGET_DIR}/distribution.xml --package-path ${PKG_DIR} "${TARGET_DIR}/$OUTPUT_BASE_FILENAME" rm ${TARGET_DIR}/distribution.xml rm -r $PKG_DIR