make sure not to include .DS_STORE in appstore bundles

Signed-off-by: Georg Ehrke <developer@georgehrke.com>
This commit is contained in:
Georg Ehrke 2017-07-20 11:51:04 +02:00
parent f30c2ea19a
commit bd798a42ca
No known key found for this signature in database
GPG Key ID: 9D98FD9380A1CB43
1 changed files with 2 additions and 1 deletions

View File

@ -147,6 +147,7 @@ appstore:
"js/public" \
"COPYING" \
"CHANGELOG.md" \
".gitignore" \
$(appstore_build_directory)
ifdef CAN_SIGN
mv $(configdir)/config.php $(configdir)/config-2.php
@ -155,7 +156,7 @@ ifdef CAN_SIGN
else
@echo $(sign_skip_msg)
endif
tar -czf $(appstore_package_name).tar.gz -C $(appstore_build_directory)/../ $(app_name)
tar -czf $(appstore_package_name).tar.gz -C $(appstore_build_directory)/../ --exclude-vcs-ignores --exclude='.gitignore' $(app_name)
# Command for running JS and PHP tests. Works for package.json files in the js/