Skip to content

Commit

Permalink
Update Python version in LLVM fix
Browse files Browse the repository at this point in the history
After upgrading to Ubuntu 24.04, the Python version in the LLVM fix
needs to be updated.
  • Loading branch information
jdno committed Oct 30, 2024
1 parent 5b68835 commit c6137d2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ansible/roles/dev-desktop/tasks/fix_llvm_55575.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@

- name: Find all lldb Python files
ansible.builtin.find:
paths: /usr/lib/llvm-14/lib/python3.10/dist-packages/lldb
paths: /usr/lib/llvm-14/lib/python3.12/dist-packages/lldb
file_type: file
register: lldb_python_files

- name: Find all lldb Python modules
ansible.builtin.find:
paths: /usr/lib/llvm-14/lib/python3.10/dist-packages/lldb
paths: /usr/lib/llvm-14/lib/python3.12/dist-packages/lldb
file_type: directory
register: lldb_python_directories

Expand All @@ -26,5 +26,5 @@
- name: Fix lldb-server-14.0.0
ansible.builtin.file:
src: /usr/lib/llvm-14/bin/lldb-server
dest: /usr/bin/lldb-server-14.0.0
dest: /usr/bin/lldb-server-14.0.6
state: link

0 comments on commit c6137d2

Please sign in to comment.