From 0b4589294ce6b07c0f3f6090faf87384ac7ae7b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Hern=C3=A1ndez=20Cordero?= Date: Mon, 29 Apr 2024 10:30:16 +0200 Subject: [PATCH] install rosdep MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Alejandro Hernández Cordero --- .github/workflows/basic-build-ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/basic-build-ci.yaml b/.github/workflows/basic-build-ci.yaml index 540721b4b..61aa21cd2 100644 --- a/.github/workflows/basic-build-ci.yaml +++ b/.github/workflows/basic-build-ci.yaml @@ -24,7 +24,7 @@ jobs: - name: Install Prerequisites run: | bash -c 'source /opt/ros/$ROS_DISTRO/setup.bash; \ - apt-get update && apt-get upgrade -y && rosdep update; \ + apt-get update && apt-get upgrade -y && apt-get install ros-dev-tools && rosdep update; \ rosdep install --from-paths src --ignore-src -y' - name: Build Workspace run: |