diff --git a/.conda/post-link.sh b/.conda/post-link.sh
index 58c97357d6d0afe1b7ccee48e3c1191d091771e8..af4ace98972a59cca1f2a4c0d46ea10883e96d26 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 5b5b679b67e7da69bf22d6282892391d6cfaba1c..fa79dac5240a78d3184c3873bab50bf2957487ba 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