Skip to content

Commit

Permalink
Update version check
Browse files Browse the repository at this point in the history
  • Loading branch information
f0reachARR committed Oct 30, 2024
1 parent 8024e94 commit 6744fdf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ansible/playbooks/universe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
pre_tasks:
- name: Verify OS
ansible.builtin.fail:
msg: Only Ubuntu 22.04 is supported for this branch. Please refer to https://autowarefoundation.github.io/autoware-documentation/main/installation/autoware/source-installation/.
when: ansible_distribution_version != '22.04'
msg: Only Ubuntu 22.04 / 24.04 is supported
when: ansible_distribution != 'Ubuntu' or (ansible_distribution_version != '22.04' and ansible_distribution_version != '24.04')

- name: Print args
ansible.builtin.debug:
Expand Down

0 comments on commit 6744fdf

Please sign in to comment.