Skip to content

Commit 1abe02e

Browse files
author
Jakub Kaczmarzyk
authored
Merge pull request #262 from kaczmarj/fix/260
Use `conda clean --all` instead of `conda clean -tipsy`
2 parents e32ce4c + 5a5df91 commit 1abe02e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

neurodocker/templates/miniconda.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ generic:
2323
conda config --system --prepend channels conda-forge
2424
conda config --system --set auto_update_conda false
2525
conda config --system --set show_channel_urls true
26-
sync && conda clean -tipsy && sync
26+
sync && conda clean --all && sync
2727
{% endif -%}
2828
{% if miniconda.yaml_file -%}
2929
conda env create {{ miniconda.conda_opts|default("-q") }} --name {{ miniconda.env_name }} --file {{ miniconda.yaml_file }}
@@ -40,7 +40,7 @@ generic:
4040
'{{ pkg }}'
4141
{%- endif -%}
4242
{% endfor %}
43-
sync && conda clean -tipsy && sync
43+
sync && conda clean --all && sync
4444
{% endif -%}
4545
{% if miniconda.pip_install is not none -%}
4646
bash -c "source activate {{ miniconda.env_name }}

0 commit comments

Comments
 (0)