diff options
author | Fred Hornsey <hornseyf@objectcomputing.com> | 2020-08-12 02:14:28 -0500 |
---|---|---|
committer | Fred Hornsey <hornseyf@objectcomputing.com> | 2020-08-12 02:14:28 -0500 |
commit | 3fa70778c14e2f4646a341ba3967d2d522419590 (patch) | |
tree | 449a2b444c77f252cab8756f22c59ba47be2eaf8 /ACE/bin | |
parent | caced33b4cb2cb38bbb5156fe2fd5b6abb784e00 (diff) | |
download | ATCD-3fa70778c14e2f4646a341ba3967d2d522419590.tar.gz |
make_release.py: Spelling
Diffstat (limited to 'ACE/bin')
-rwxr-xr-x | ACE/bin/make_release.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/ACE/bin/make_release.py b/ACE/bin/make_release.py index 5c1ca95d925..9899b63bf50 100755 --- a/ACE/bin/make_release.py +++ b/ACE/bin/make_release.py @@ -53,7 +53,7 @@ class ArgParser: else: options, arguments = self.real_parser.parse_args () if arguments: - self.real_parser.error ("Extranous arguments: " + ' '.join(arguments)) + self.real_parser.error ("Extraneous arguments: " + ' '.join(arguments)) return options ################################################## @@ -101,7 +101,7 @@ def parse_args (): help="Create a micro release.", default=None, const="micro") parser.add_option ("--tag", dest="tag", action="store_true", - help="Tag the repositorie with all needed tags", default=False) + help="Update tags and branches of the repositories", default=False) parser.add_option ("--update", dest="update", action="store_true", help="Update the version numbers", default=False) parser.add_option ("--push", dest="push", action="store_true", @@ -220,8 +220,6 @@ def commit (files): ex ("cd $DOC_ROOT/ACE_TAO && git commit -m\"" + version + "\"") -# print "Checked in files, resuling in revision ", rev.number - def check_workspace (): """ Checks that the DOC and MPC repositories are up to date. """ global opts, doc_root @@ -742,7 +740,7 @@ def move_packages (name, stage_dir, package_dir): def create_file_lists (base_dir, prefix, exclude): """ Creates two lists of files: files that need CR->CRLF conversions (useful for zip files) and those that don't, - excluding filies/directories found in exclude. """ + excluding files/directories found in exclude. """ import os text_files = list () |