Skip to content
Snippets Groups Projects

MNT: Work around weird WSL1/conda file system issue

Merged Paul McCarthy requested to merge paulmc-master-patch-86724 into master
Files
3
@@ -11,14 +11,16 @@ if [ -f /.dockerenv ]; then
fi
mkdir -p ./usr/local/fsl/bin
./fslpython_install.sh -f ./usr/local/fsl && echo "0" > status || echo "1" > status || true
./fslpython_install.sh -d -f ./usr/local/fsl && echo "0" > status || echo "1" > status || true
status=`cat status`
if [ -z ${TMPDIR+x} ]; then
TMPDIR=/tmp/
fi
cat ${TMPDIR}/fslpython*/fslpython_miniconda_installer.log || true
logfile=$(ls -t ${TMPDIR}/fslpython*/fslpython_miniconda_installer.log|head -n1)
cat ${logfile}
if [[ "${status}" == "1" ]]; then
exit 1
Loading