Skip to content
Snippets Groups Projects
Commit 67b2940e authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

Merge branch 'master' into 'master'

Modified to request install

See merge request fsl/fslpy!43
parents 70ffab5f 8020b709
No related branches found
No related tags found
No related merge requests found
if [ -z ${FSLDIR} ]; then exit; fi if [ -e ${FSLDIR}/bin/requestFSLpythonLink.sh ]; then
if [ ! -d ${FSLDIR}/bin ]; then exit; fi $FSLDIR/bin/requestFSLpythonLink.sh ${PREFIX}/bin atlasquery atlasq imcp immv imglob
scripts="atlasquery atlasq imcp immv imglob" fi
for script in $scripts; do
if [ -f ${FSLDIR}/bin/${script} ]; then rm ${FSLDIR}/bin/${script}; fi
ln -s ${PREFIX}/bin/${script} ${FSLDIR}/bin/${script}
done
if [ -z ${FSLDIR} ]; then exit; fi if [ -e ${FSLDIR}/bin/requestFSLpythonUnlink.sh ]; then
scripts="atlasquery atlasq imcp immv imglob" $FSLDIR/bin/requestFSLpythonUnlink.sh ${PREFIX}/bin atlasquery atlasq imcp immv imglob
for script in $scripts; do fi
if [ -f ${FSLDIR}/bin/${script} ]; then rm ${FSLDIR}/bin/${script}; fi
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment