File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -244,10 +244,14 @@ done
244
244
# ####### Generate extra files ########
245
245
find firmware/mcu_ws/ros2 \( -name " *.srv" -o -name " *.msg" -o -name " *.action" \) | awk -F" /" ' {print $(NF-2)"/"$NF}' > /project/available_ros2_types
246
246
find firmware/mcu_ws/extra_packages \( -name " *.srv" -o -name " *.msg" -o -name " *.action" \) | awk -F" /" ' {print $(NF-2)"/"$NF}' >> /project/available_ros2_types
247
+ # sort it so that the result order is reproducible
248
+ sort -o /project/available_ros2_types /project/available_ros2_types
247
249
248
250
cd firmware
249
251
echo " " > /project/built_packages
250
252
for f in $( find $( pwd) -name .git -type d) ; do pushd $f > /dev/null; echo $( git config --get remote.origin.url) $( git rev-parse HEAD) >> /project/built_packages; popd > /dev/null; done ;
253
+ # sort it so that the result order is reproducible
254
+ sort -o /project/built_packages /project/built_packages
251
255
252
256
# ####### Fix permissions ########
253
257
sudo chmod -R 777 .
You can’t perform that action at this time.
0 commit comments