Skip to content

Commit

Permalink
fix(): update after some breaking changes in dependencies, fixes #111
Browse files Browse the repository at this point in the history
  • Loading branch information
rokusottervanger authored and Rayman committed Jan 15, 2024
1 parent da9aaee commit 1e7a8cd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ros_get/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def update(restore_versions, rosdep_check_install, verbose):
get_rosdistro()

logger.info('rosdep update')
exit_code = command_update(Namespace(include_eol_distros=False, ros_distro=None))
exit_code = command_update(Namespace(include_eol_distros=False, ros_distro=None, quiet=None))
if exit_code:
logger.error('`rosdep update` exited with %d', exit_code)
return exit_code
Expand Down
4 changes: 3 additions & 1 deletion src/ros_get/workspace.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,9 @@ def create_workspace_with_catkin_tools(extend_path, dir):
append_args=None,
remove_args=None,
init=True,
mkdirs=True)):
mkdirs=True,
buildlist=None,
skiplist=None)):
logger.error('catkin config error\n\nAre you sure the workspace you are extending is generated by catkin? '
'For colcon, pass the --colcon argument')
return 1
Expand Down

0 comments on commit 1e7a8cd

Please sign in to comment.