From db640719e8e3a2969102e37d5ae71dc82264ecec Mon Sep 17 00:00:00 2001 From: huhamhire Date: Fri, 26 Jul 2013 15:13:00 +0800 Subject: [PATCH] Exclude ".gitattributes", "README.md" while build source packages. --- _build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_build.py b/_build.py index c96316e..3e99b6f 100644 --- a/_build.py +++ b/_build.py @@ -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 @@ -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