We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@bmagyar FYI I noticed this while checking ros/rosdistro#25265
It looks like joystick_relay.py will get installed with the wrong shebang on Noetic, and so it won't be runnable. See this ROS wiki page for more info: http://wiki.ros.org/UsingPython3/SourceCodeChanges#Changing_shebangs
joystick_relay.py
To fix, the shebang should be changed to #!/usr/bin/env python
#!/usr/bin/env python
twist_mux/scripts/joystick_relay.py
Line 1 in a2818fd
and the script should be installed with catkin_install_python()
catkin_install_python()
twist_mux/CMakeLists.txt
Lines 40 to 41 in a2818fd
The text was updated successfully, but these errors were encountered:
joystick_relay.py: Fix shebang for correct catkin_install_python
c341a3e
Resolves ros-teleop#22
[ROS1] Fix Noetic release / Python3 (#39)
deaca20
* Update CMakeLists * joystick_relay.py: Fix shebang for correct catkin_install_python Resolves #22
67fe086
No branches or pull requests
@bmagyar FYI I noticed this while checking ros/rosdistro#25265
It looks like
joystick_relay.py
will get installed with the wrong shebang on Noetic, and so it won't be runnable. See this ROS wiki page for more info: http://wiki.ros.org/UsingPython3/SourceCodeChanges#Changing_shebangsTo fix, the shebang should be changed to
#!/usr/bin/env python
twist_mux/scripts/joystick_relay.py
Line 1 in a2818fd
and the script should be installed with
catkin_install_python()
twist_mux/CMakeLists.txt
Lines 40 to 41 in a2818fd
The text was updated successfully, but these errors were encountered: