Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 8ff141f

Browse files
committed
[[ FMPackage ]] Zip and package filemaker solutions
1 parent 24fb7dd commit 8ff141f

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

buildbot.mk

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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
284292
distmac-disk-%: distmac-bundle-%
285293
$(buildtool_command) --platform mac --stage disk --edition $*

0 commit comments

Comments
 (0)