diff --git a/playbooks/roles/common/tasks/anyenv.yml b/playbooks/roles/common/tasks/anyenv.yml index 944a231..562b0fc 100644 --- a/playbooks/roles/common/tasks/anyenv.yml +++ b/playbooks/roles/common/tasks/anyenv.yml @@ -4,11 +4,6 @@ repo: https://github.com/riywo/anyenv.git dest: ~/.anyenv -- name: Ensure envs directory is empty - file: - state: absent - path: ~/.anyenv/envs - - name: Ensure envs directory exists file: path: ~/.anyenv/envs/ @@ -16,6 +11,11 @@ - name: Install pyenv shell: ~/.anyenv/bin/anyenv install pyenv + args: + creates: ~/.anyenv/envs/pyenv + - name: Install rbenv shell: ~/.anyenv/bin/anyenv install rbenv + args: + creates: ~/.anyenv/envs/rbenv diff --git a/playbooks/roles/ubuntu/tasks/main.yml b/playbooks/roles/ubuntu/tasks/main.yml index 3b0d62d..fa49617 100644 --- a/playbooks/roles/ubuntu/tasks/main.yml +++ b/playbooks/roles/ubuntu/tasks/main.yml @@ -12,7 +12,7 @@ name: "neovim" state: latest -- name: Install @development-tools +- name: Install build-essential become: yes become_method: sudo apt: