dotfiles/playbooks/roles/common/tasks/anyenv.yml
2018-11-12 14:38:19 -05:00

21 lines
418 B
YAML

---
- name: Install anyenv
git:
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/
state: directory
- name: Install pyenv
shell: ~/.anyenv/bin/anyenv install pyenv
- name: Install rbenv
shell: ~/.anyenv/bin/anyenv install rbenv