Skip to content

Commit

Permalink
[ansible] Remove requirements file
Browse files Browse the repository at this point in the history
  • Loading branch information
goldyfruit committed Nov 16, 2023
1 parent 05f35a3 commit 31e97b1
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion ansible/roles/ovos_installer/tasks/virtualenv/venv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,17 @@
recurse: true
state: directory

- name: Remove {{ ovos_installer_user_home }}/.venvs/ovos Python virtualenv
- name: Remove {{ ovos_installer_user_home }}/.venvs/ovos Python virtualenv and requirements.txt files
ansible.builtin.file:
path: "{{ ovos_installer_user_home }}/.venvs/ovos"
state: absent
loop:
- "{{ ovos_installer_user_home }}/.venvs/ovos"
- /tmp/core-requirements.txt
- /tmp/gui-requirements.txt
- /tmp/skills-requirements.txt
- /tmp/listener-requirements.txt
- /tmp/satellite-requirements.txt
when: ovos_installer_cleaning | bool
tags:
- uninstall

0 comments on commit 31e97b1

Please sign in to comment.