Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ansible/roles/caret_iron/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
- name: ROS2 (check rosdep file)

Check warning on line 1 in ansible/roles/caret_iron/tasks/main.yml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Forbidden word (ROS2)
stat:
path: /etc/ros/rosdep/sources.list.d/20-default.list
register: ros_repository

- name: ROS2 (install rosdep)

Check warning on line 6 in ansible/roles/caret_iron/tasks/main.yml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Forbidden word (ROS2)
apt:
name: python3-rosdep
state: latest
update_cache: true
become: true

- name: ROS2 (initialize rosdep)

Check warning on line 13 in ansible/roles/caret_iron/tasks/main.yml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Forbidden word (ROS2)
command: rosdep init
when: ros_repository.stat.exists == false
become: true

- name: ROS2 (update rosdep)

Check warning on line 18 in ansible/roles/caret_iron/tasks/main.yml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Forbidden word (ROS2)
command: rosdep update
command: rosdep update --include-eol-distros
become: false

- name: caret (rosdep install dependencies)
Expand Down
Loading