magazino / pylon_camera

ROS-Driver for Basler Cameras
BSD 3-Clause "New" or "Revised" License
78 stars 108 forks source link

Installation command to add yaml url to 15-pylon_camera.list broken. #24

Closed Crusty82 closed 6 years ago

Crusty82 commented 6 years ago

On ROS Wiki there is an extra semicolon that breaks this for me.

Command given on ROS Wiki (http://wiki.ros.org/pylon_camera)

sudo sh -c 'echo "yaml https://raw.githubusercontent.com/magazino/pylon_camera/indigo-devel/rosdep/pylon_sdk.yaml"; > /etc/ros/rosdep/sources.list.d/15-pylon_camera.list'

This simply prints "yaml https://raw.githubusercontent.com/magazino/pylon_camera/indigo-devel/rosdep/pylon_sdk.yaml" to the terminal for me instead of the file.

Easy fix: remove the semicolon to make this correct echo into a file.

Fixed command: sudo sh -c 'echo "yaml https://raw.githubusercontent.com/magazino/pylon_camera/indigo-devel/rosdep/pylon_sdk.yaml" > /etc/ros/rosdep/sources.list.d/15-pylon_camera.list'

marc-up commented 6 years ago

Thanks for the feedback! Should be fixed now