neurodocker
neurodocker copied to clipboard
afni.yaml
the gsl is breaking the afni because the gsl lib has been updated from 19 to 23
gsl2_path="$(find / -name 'libgsl.so.23' || printf '')"
hi @a3sha2 - thank you very much for the report. libgsl will have a different version across different versions of linux distributions... i'm wondering if we should glob like this:
gsl2_path="$(find / -name 'libgsl.so.*' || printf '')"
what do you think?
@kaczmarj thank you that will do the job
@a3sha2 - thanks. we went through a refactor during the timeline of this PR. could you rebase to the current master branch? or can you open a new pr against the current master?
I was about to integrate this pull request in the current fix, but it looks like it is already there?
gsl_path="$(find / -name 'libgsl.so.??' || printf '')"
pull request obsolete and change is already there: https://github.com/ReproNim/neurodocker/blob/bd4ce3a33142530a1c98fc3499ba56d6465151ab/neurodocker/templates/afni.yaml#L82