List built ROS packages

This commit is contained in:
Oleg Kalachev
2022-09-23 23:10:20 +03:00
parent d58a59afab
commit b655a4274e

View File

@@ -73,3 +73,8 @@ echo "--- Build ROS"
--install-space=/opt/ros/$ROS_DISTRO
source /opt/ros/$ROS_DISTRO/setup.bash
echo "--- List built ROS packages"
set +x
rospack list-names | while read line; do echo $line `rosversion $line`; done
set -x