Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
FSL
conda
installer
Commits
c55ee49d
Commit
c55ee49d
authored
Oct 11, 2021
by
Paul McCarthy
🚵
Browse files
MNT: Add hack to avoid WSL filesystem issue
parent
e247a75b
Changes
1
Hide whitespace changes
Inline
Side-by-side
fslinstaller.py
View file @
c55ee49d
...
...
@@ -1203,6 +1203,11 @@ def install_miniconda(ctx):
cmd
=
'sh miniconda.sh -b -p {}'
.
format
(
ctx
.
destdir
)
Process
.
monitor_progress
(
cmd
,
output
,
ctx
.
need_admin
,
ctx
)
# Avoid WSL filesystem issue
# https://github.com/conda/conda/issues/9948
cmd
=
'find {} -type f -exec touch {{}} +'
.
format
(
ctx
.
destdir
)
Process
.
check_call
(
cmd
,
ctx
.
need_admin
,
ctx
)
# Create .condarc config file
condarc
=
tw
.
dedent
(
"""
# Try and make package downloads more robust
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment