diff --git a/bloom/generators/debian/generate_cmd.py b/bloom/generators/debian/generate_cmd.py index 19d036d3..6d5a4430 100644 --- a/bloom/generators/debian/generate_cmd.py +++ b/bloom/generators/debian/generate_cmd.py @@ -67,6 +67,7 @@ def prepare_arguments(parser): help="path to or containing the package.xml of a package") action = parser.add_mutually_exclusive_group(required=False) add = action.add_argument + add('--skip-pip', default=False, action='store_true', help="skip all pip rosdep keys") add('--place-template-files', action='store_true', help="places debian/* template files only") add('--process-template-files', action='store_true', diff --git a/bloom/generators/rpm/generate_cmd.py b/bloom/generators/rpm/generate_cmd.py index b219d4c3..f9a52551 100644 --- a/bloom/generators/rpm/generate_cmd.py +++ b/bloom/generators/rpm/generate_cmd.py @@ -67,6 +67,7 @@ def prepare_arguments(parser): help="path to or containing the package.xml of a package") action = parser.add_mutually_exclusive_group(required=False) add = action.add_argument + add('--skip-pip', default=False, action='store_true', help="skip all pip rosdep keys") add('--place-template-files', action='store_true', help="places rpm/* template file(s) only") add('--process-template-files', action='store_true',