Skip to content

Commit

Permalink
fix using dependencies verb
Browse files Browse the repository at this point in the history
  • Loading branch information
niosus committed Mar 28, 2017
1 parent c23e3aa commit c591ea9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions catkin_tools_fetch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,11 @@
main=main,
prepare_arguments=prepare_arguments_deps,
)

# This describes this command to the loader
description_dependencies = dict(
verb='dependencies',
description='Manage dependencies',
main=main,
prepare_arguments=prepare_arguments_deps,
)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def run(self):
'catkin_tools.commands.catkin.verbs': [
'fetch = catkin_tools_fetch:description',
'deps = catkin_tools_fetch:description_deps',
'dependencies = catkin_tools_fetch:description_deps',
'dependencies = catkin_tools_fetch:description_dependencies',
],
},
cmdclass={'install': PermissiveInstall},
Expand Down

0 comments on commit c591ea9

Please sign in to comment.