Skip to content

Commit 7a16e72

Browse files
committed
Add actions to available ROS 2 types
1 parent 8b06626 commit 7a16e72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extras/library_generation/library_generation.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ if [[ " ${PLATFORMS[@]} " =~ " teensy4 " ]]; then
9595
fi
9696

9797
######## Generate extra files ########
98-
find firmware/mcu_ws/ros2 \( -name "*.srv" -o -name "*.msg" \) | awk -F"/" '{print $(NF-2)"/"$NF}' > /arduino_project/available_ros2_types
99-
find firmware/mcu_ws/extra_packages \( -name "*.srv" -o -name "*.msg" \) | awk -F"/" '{print $(NF-2)"/"$NF}' >> /arduino_project/available_ros2_types
98+
find firmware/mcu_ws/ros2 \( -name "*.srv" -o -name "*.msg" -o -name "*.action" \) | awk -F"/" '{print $(NF-2)"/"$NF}' > /arduino_project/available_ros2_types
99+
find firmware/mcu_ws/extra_packages \( -name "*.srv" -o -name "*.msg" -o -name "*.action" \) | awk -F"/" '{print $(NF-2)"/"$NF}' >> /arduino_project/available_ros2_types
100100

101101
cd firmware
102102
echo "" > /arduino_project/built_packages

0 commit comments

Comments
 (0)