Skip to content
This repository has been archived by the owner on Aug 3, 2024. It is now read-only.

Commit

Permalink
Exclude ".gitattributes", "README.md" while build source packages.
Browse files Browse the repository at this point in the history
  • Loading branch information
huhamhire authored and huhamhire-hosts committed Jul 26, 2013
1 parent efb9219 commit db64071
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _build.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
# Pack up script package for Linux users
file_path = lambda rel_path: SCRIPT_DIR + rel_path
includes = ["*.py", "lang/*.qm", "LICENSE", "README"]
excludes = ["_*.py"]
excludes = ["_*.py", ".gitattributes", "README.md"]
ex_files = []
prefix = "HostsUtl-x11-gpl-"
tar_flag = 1
Expand All @@ -88,7 +88,7 @@
# Pack up source package for Linux users
file_path = lambda rel_path: SCRIPT_DIR + rel_path
includes = ["*"]
excludes = []
excludes = [".gitattributes", "README.md"]
ex_files = []
prefix = "HostsUtl-source-gpl-"
tar_flag = 1
Expand Down

0 comments on commit db64071

Please sign in to comment.