summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Mitz <mitza@ociweb.com>2015-03-02 13:47:35 -0600
committerAdam Mitz <mitza@ociweb.com>2015-05-07 10:08:16 -0500
commit32e3e82ef65c5b1b47163853c3c1fc062b0fafe6 (patch)
tree23d4d642b10e8d3197ae53459bcacb8d81703740
parent92811a82a2ddd0d975f7cae040e81c833d640f86 (diff)
downloadATCD-32e3e82ef65c5b1b47163853c3c1fc062b0fafe6.tar.gz
Exclude .gitignore files from release packages.
-rwxr-xr-xACE/bin/make_release.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/bin/make_release.py b/ACE/bin/make_release.py
index 9b6c5b2e4ba..479f2002965 100755
--- a/ACE/bin/make_release.py
+++ b/ACE/bin/make_release.py
@@ -861,7 +861,7 @@ def package (stage_dir, package_dir, decorator):
pass # swallow any errors
text_files, bin_files = create_file_lists (join (stage_dir, "ACE_wrappers"),
- "ACE_wrappers", ["TAO"])
+ "ACE_wrappers", ["TAO", ".gitignore"])
# write_file_lists ("fACE" + decorator, text_files, bin_files)
update_packages ("\n".join (text_files),
@@ -876,7 +876,7 @@ def package (stage_dir, package_dir, decorator):
# for TAO:
text_files, bin_files = create_file_lists (join (stage_dir, "ACE_wrappers/TAO"),
- "ACE_wrappers/TAO", ["CIAO", "DAnCE"])
+ "ACE_wrappers/TAO", ["CIAO", "DAnCE", ".gitignore"])
# write_file_lists ("fTAO" + decorator, text_files, bin_files)
update_packages ("\n".join (text_files),
@@ -891,7 +891,7 @@ def package (stage_dir, package_dir, decorator):
# for DAnCE:
text_files, bin_files = create_file_lists (join (stage_dir, "ACE_wrappers/TAO/DAnCE"),
- "ACE_wrappers/TAO/DAnCE", [])
+ "ACE_wrappers/TAO/DAnCE", [".gitignore"])
# write_file_lists ("fTAO" + decorator, text_files, bin_files)
update_packages ("\n".join (text_files),
@@ -905,7 +905,7 @@ def package (stage_dir, package_dir, decorator):
bin_files = list ()
# for CIAO:
text_files, bin_files = create_file_lists (join (stage_dir, "ACE_wrappers/TAO/CIAO"),
- "ACE_wrappers/TAO/CIAO", [])
+ "ACE_wrappers/TAO/CIAO", [".gitignore"])
# write_file_lists ("fCIAO" + decorator, text_files, bin_files)
update_packages ("\n".join (text_files),