@@ -214,7 +214,9 @@ dist-upload-files.txt sha1sum.txt:
214214 -o -name ' LiveCode*Docs-*.zip' \
215215 -o -name ' *-bin.tar.xz' \
216216 -o -name ' *-bin.tar.bz2' \
217- -o -name ' LiveCodeforFM-*.fmp12' \
217+ -o -name ' LiveCodeForFM-Mac.tar.xz' \
218+ -o -name ' LiveCodeForFM-Win-x86.tar.xz' \
219+ -o -name ' LiveCodeForFM-Win-x86_64.tar.xz' \
218220 > dist-upload-files.txt; \
219221 if test " ${UPLOAD_RELEASE_NOTES} " = " yes" ; then \
220222 find . -maxdepth 1 -name ' LiveCodeNotes*.pdf' >> dist-upload-files.txt; \
@@ -277,9 +279,15 @@ distmac-extract:
277279 set -e; \
278280 tar -xvf mac-installer.tar.xz; \
279281 $(buildtool_command ) --platform mac --stage fmpackage --debug; \
282+ find . -maxdepth 1 -name ' LiveCodeforFM-Mac-*.fmp12' -print0 \
283+ | xargs -0 tar -cvf LiveCodeForFM-Mac.tar.xz; \
280284 $(buildtool_command ) --platform win-x86 --stage fmpackage --debug; \
281- $(buildtool_command ) --platform win-x86_64 --stage fmpackage --debug
282-
285+ find . -maxdepth 1 -name ' LiveCodeforFM-Win-x86-*.fmp12' -print0 \
286+ | xargs -0 tar -cvf LiveCodeForFM-Win-x86.tar.xz; \
287+ $(buildtool_command ) --platform win-x86_64 --stage fmpackage --debug; \
288+ find . -maxdepth 1 -name ' LiveCodeforFM-Win-x86_64-*.fmp12' -print0 \
289+ | xargs -0 tar -cvf LiveCodeForFM-Win-x86_64.tar.xz
290+
283291# Final installer creation for Mac
284292distmac-disk-% : distmac-bundle-%
285293 $(buildtool_command ) --platform mac --stage disk --edition $*
0 commit comments