We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5f25eb commit 1032cfbCopy full SHA for 1032cfb
.github/workflows/ros1.yaml
@@ -7,7 +7,6 @@ jobs:
7
strategy:
8
matrix:
9
env:
10
- - {ROS_DISTRO: melodic, ROS_REPO: main}
11
- {ROS_DISTRO: noetic, ROS_REPO: main}
12
runs-on: ubuntu-latest
13
steps:
src/bt_factory.cpp
@@ -204,7 +204,7 @@ void BehaviorTreeFactory::registerFromROSPlugins()
204
for (const auto& lib_path : catkin_lib_paths)
205
{
206
const auto full_path = std::filesystem::path(lib_path) / filename;
207
- if (full_path.exists())
+ if (std::filesystem::exists(full_path))
208
209
std::cout << "Registering ROS plugins from " << full_path.string() << std::endl;
210
registerFromPlugin(full_path.string());
0 commit comments