Skip to content

Commit 762b259

Browse files
committed
Address comments
1 parent a2bf1b5 commit 762b259

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/linux-x64-build-and-test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ jobs:
9898
run: |
9999
uname -a
100100
source /opt/ros2_rolling/ros2-linux/setup.bash
101+
source /opt/ros/rolling/local_setup.bash
101102
npm i
102103
npm run lint
103104
npm test
@@ -117,6 +118,7 @@ jobs:
117118
if: ${{ matrix.ros_distribution == 'rolling' }}
118119
run: |
119120
source /opt/ros2_rolling/ros2-linux/setup.bash
121+
source /opt/ros/rolling/local_setup.bash
120122
npm i
121123
npm run test-idl
122124
npm run clean

rosidl_parser/parser.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ def get_json_object_from_msg_spec_object(msg_spec_object):
5252
try:
5353
parser_method = getattr(parser, sys.argv[1])
5454
spec = parser_method(sys.argv[2], sys.argv[3])
55+
5556
if sys.argv[1] == 'parse_message_file':
5657
json_obj = get_json_object_from_msg_spec_object(spec)
5758
elif sys.argv[1] == 'parse_service_file':

0 commit comments

Comments
 (0)