打开终端,对要编译的目录执行一下命令
find ./ -type f | xargs touch
ROS1编译报错时钟错误
warning:clock skew detected. Your build may be incomplete
在工作空间(catkin_make)所在目录执行以下命令
find . -type f -exec touch {} \;
打开终端,对要编译的目录执行一下命令
find ./ -type f | xargs touch
ROS1编译报错时钟错误
warning:clock skew detected. Your build may be incomplete
在工作空间(catkin_make)所在目录执行以下命令
find . -type f -exec touch {} \;