Skip to content

Commit

Permalink
Fix tar exclusion args in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
PVince81 committed Nov 26, 2018
1 parent 71c224a commit 1a49f6d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,14 @@ dist:
source:
rm -rf $(source_build_directory)
mkdir -p $(source_build_directory)
tar cvzf $(source_package_name).tar.gz ../$(app_name) \
tar cvzf $(source_package_name).tar.gz \
--exclude-vcs \
--exclude="../$(app_name)/build" \
--exclude="../$(app_name)/js/node_modules" \
--exclude="../$(app_name)/node_modules" \
--exclude="../$(app_name)/*.log" \
--exclude="../$(app_name)/js/*.log" \
../$(app_name) \

# Builds the source package for the app store, ignores php and js tests
.PHONY: appstore
Expand Down

0 comments on commit 1a49f6d

Please sign in to comment.