summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Mitz <mitza@ociweb.com>2015-03-02 13:47:35 -0600
committerAdam Mitz <mitza@ociweb.com>2015-03-02 13:47:35 -0600
commitaac642374d4f97d4525084a743c2b638731b658b (patch)
treef64d93982b659db154d79fc4fee32e3f272e1680
parent84369222bca140abba58ff0a8d51f1aa323f8bdc (diff)
downloadATCD-aac642374d4f97d4525084a743c2b638731b658b.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 9c58750ed4c..c3ba27e384f 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),