From fbc848fab1ea4b07486882a1f2827fe1f464c86c Mon Sep 17 00:00:00 2001 From: Harsh Deshpande Date: Tue, 31 Oct 2023 15:08:43 +0100 Subject: [PATCH] fix $ sign for bash env var --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2ab428ed..51a41292 100644 --- a/README.md +++ b/README.md @@ -28,13 +28,13 @@ git clone --branch=main https://github.com/PepperlFuchs/pf_lidar_ros_driver.git export ROS_DISTRO=melodic OR export ROS_DISTRO=noetic cd rosdep update -rosdep install --from-paths src --ignore-src --rosdistro=ROS_DISTRO -y +rosdep install --from-paths src --ignore-src --rosdistro=$ROS_DISTRO -y ``` **Build the workspace:** ``` cd -source /opt/ros/ROS_DISTRO/setup.bash +source /opt/ros/$ROS_DISTRO/setup.bash ``` If `catkin_tools` is installed as shown above: ```