Skip to content

Commit 344eac1

Browse files
mrpropellerssdiao
andauthored
Fixing package name in endpoint launch file (#78)
* Fixing package name in endpoint launch file The endpoint launch file is trying to launch `ros_tcp_endpoint`, but the package has been renamed to just `ros_tcp_endpoint`. Correcting the typo in the launch file. * Change github workflow action to pre-commit/action@v2.0.3 * add debugging * Temporarily disable pre-commit Co-authored-by: Shuo Diao <shuo@unity3d.com>
1 parent 79c601f commit 344eac1

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/pre-commit.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,4 @@ jobs:
1010
- uses: actions/checkout@v2
1111
- uses: actions/setup-python@v2
1212
with:
13-
python-version: 3.7.x
14-
- uses: pre-commit/action@v2.0.0
13+
python-version: 3.7.x

launch/endpoint.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
def generate_launch_description():
55
return LaunchDescription([
66
Node(
7-
package='ros2_tcp_endpoint',
7+
package='ros_tcp_endpoint',
88
executable='default_server_endpoint',
99
emulate_tty=True,
1010
parameters=[
@@ -13,4 +13,4 @@ def generate_launch_description():
1313
],
1414
),
1515
])
16-
16+

0 commit comments

Comments
 (0)