ROS2 workspace clean
What is the equivalent to catkin clean for ROS2 and colcon?
ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | Q&A answers.ros.org |
What is the equivalent to catkin clean for ROS2 and colcon?
rm -r build install
In addition to build and install, I would also clean the log directory
rm -r build install log
By installing the new colcon-clean extension, you can clean the build, install and log base paths like so:
sudo apt install python3-colcon-clean
colcon clean workspace
See the extension's repo readme for more documentation:
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2019-08-06 12:31:57 -0500
Seen: 12,182 times
Last updated: Dec 15 '22
There isn't one (yet) see ticket: https://github.com/colcon/colcon-core... You're best off scripting the removal of those directories for now.
Happy to say, there is one now: https://github.com/colcon/colcon-core...