Skip to content

Commit

Permalink
add --skip-pip option to generators/debian/generate_cmd.py, for bloom…
Browse files Browse the repository at this point in the history
…-generate rosdebian
  • Loading branch information
k-okada committed Aug 16, 2024
1 parent 1f42d34 commit 0d76ec0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions bloom/generators/debian/generate_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
1 change: 1 addition & 0 deletions bloom/generators/rpm/generate_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 0d76ec0

Please sign in to comment.