From 9d110f2d63be16f1c1297fc1ade5b9e4c12ad5d4 Mon Sep 17 00:00:00 2001 From: Matthew Webster <mwebster@fmrib.ox.ac.uk> Date: Mon, 29 Jan 2018 15:11:31 +0000 Subject: [PATCH] Create atlasquery ohi wrapper --- .conda/post-link.sh | 2 +- .conda/pre-unlink.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.conda/post-link.sh b/.conda/post-link.sh index 58c97357d..af4ace989 100755 --- a/.conda/post-link.sh +++ b/.conda/post-link.sh @@ -1,6 +1,6 @@ if [ -z ${FSLDIR} ]; then exit; fi if [ ! -d ${FSLDIR}/bin ]; then exit; fi -scripts="atlasquery imcp immv imglob" +scripts="atlasquery atlasq imcp immv imglob" for script in $scripts; do if [ -f ${FSLDIR}/bin/${script} ]; then rm ${FSLDIR}/bin/${script}; fi ln -s ${PREFIX}/bin/${script} ${FSLDIR}/bin/${script} diff --git a/.conda/pre-unlink.sh b/.conda/pre-unlink.sh index 5b5b679b6..fa79dac52 100755 --- a/.conda/pre-unlink.sh +++ b/.conda/pre-unlink.sh @@ -1,5 +1,5 @@ if [ -z ${FSLDIR} ]; then exit; fi -scripts="atlasquery imcp immv imglob" +scripts="atlasquery atlasq imcp immv imglob" for script in $scripts; do if [ -f ${FSLDIR}/bin/${script} ]; then rm ${FSLDIR}/bin/${script}; fi done -- GitLab