Create a directory that the conda installer fails to create by itself.

This commit is contained in:
Andrea Dell'Amico 2018-04-18 16:41:10 +02:00
parent 8bd1a6c108
commit 3ba1068059
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@
- block:
- name: Create a conda environment
shell: export PATH={{ conda_install_prefix }}/bin:{{ ansible_env.PATH }} ; {{ conda_install_prefix }}/bin/conda create -y -n {{ item.env_name }} {{ item.env_opts }}
shell: export PATH={{ conda_install_prefix }}/bin:{{ ansible_env.PATH }} ; mkdir -p {{ conda_user_home }}/.conda/pkgs/ ; chown -R {{ conda_user }} {{ conda_user_home }}/.conda ; {{ conda_install_prefix }}/bin/conda create -y -n {{ item.env_name }} {{ item.env_opts }}
environment:
PATH: 'PATH={{ conda_install_prefix }}/bin:{{ ansible_env.PATH }}'
args: