Skip to content

Commit 1032cfb

Browse files
committed
try fixing CI
1 parent f5f25eb commit 1032cfb

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/ros1.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ jobs:
77
strategy:
88
matrix:
99
env:
10-
- {ROS_DISTRO: melodic, ROS_REPO: main}
1110
- {ROS_DISTRO: noetic, ROS_REPO: main}
1211
runs-on: ubuntu-latest
1312
steps:

src/bt_factory.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ void BehaviorTreeFactory::registerFromROSPlugins()
204204
for (const auto& lib_path : catkin_lib_paths)
205205
{
206206
const auto full_path = std::filesystem::path(lib_path) / filename;
207-
if (full_path.exists())
207+
if (std::filesystem::exists(full_path))
208208
{
209209
std::cout << "Registering ROS plugins from " << full_path.string() << std::endl;
210210
registerFromPlugin(full_path.string());

0 commit comments

Comments
 (0)