Skip to content
Snippets Groups Projects
Commit 0c383356 authored by Duncan Mortimer's avatar Duncan Mortimer
Browse files

Now returns exit code 1 on error

parent 78704d9f
No related branches found
No related tags found
No related merge requests found
...@@ -13,7 +13,7 @@ Usage() { ...@@ -13,7 +13,7 @@ Usage() {
echo "expects to find bvals and bvecs in subject directory" echo "expects to find bvals and bvecs in subject directory"
echo "expects to find data nodif_brain_mask nodif in subject directory" echo "expects to find data nodif_brain_mask nodif in subject directory"
echo "" echo ""
exit exit 1
} }
trap Clean_Exit 2 trap Clean_Exit 2
...@@ -35,7 +35,7 @@ Clean_Exit(){ ...@@ -35,7 +35,7 @@ Clean_Exit(){
rm ${subjdir}.bedpost/logs/pid_${$}/${j} rm ${subjdir}.bedpost/logs/pid_${$}/${j}
done done
fi fi
ExitUnlock; ExitUnlock 1;
} }
Lock(){ Lock(){
...@@ -45,6 +45,7 @@ Lock(){ ...@@ -45,6 +45,7 @@ Lock(){
} }
ExitUnlock(){ ExitUnlock(){
returncode=$1
if [ -f ${FSLLOCKDIR}/.bedpost.lock ];then if [ -f ${FSLLOCKDIR}/.bedpost.lock ];then
rm ${FSLLOCKDIR}/.bedpost.lock rm ${FSLLOCKDIR}/.bedpost.lock
fi fi
...@@ -60,7 +61,7 @@ ExitUnlock(){ ...@@ -60,7 +61,7 @@ ExitUnlock(){
rm -f ${subjdir}/nodif_brain_mask_slice_* rm -f ${subjdir}/nodif_brain_mask_slice_*
fi fi
exit exit $returncode
} }
LockTest(){ LockTest(){
...@@ -92,13 +93,13 @@ make_absolute(){ ...@@ -92,13 +93,13 @@ make_absolute(){
if [ `LockTest` -eq 0 ]; then if [ `LockTest` -eq 0 ]; then
echo "bedpost is currently being run - try again later" echo "bedpost is currently being run - try again later"
exit exit 1
fi fi
if [ "x${FSLMACHINELIST}" != "x" ];then if [ "x${FSLMACHINELIST}" != "x" ];then
if [ "x${FSLREMOTECALL}" = "x" ];then if [ "x${FSLREMOTECALL}" = "x" ];then
echo "error: you must set FSLREMOTECALL if you have set FSLMACHINELIST" echo "error: you must set FSLREMOTECALL if you have set FSLMACHINELIST"
exit exit 1
fi fi
fi fi
...@@ -114,32 +115,32 @@ echo subjectdir is $subjdir ...@@ -114,32 +115,32 @@ echo subjectdir is $subjdir
if [ ! -d $subjdir ]; then if [ ! -d $subjdir ]; then
echo "subject directory $1 not found" echo "subject directory $1 not found"
ExitUnlock ExitUnlock 1
fi fi
if [ ! -f ${subjdir}/bvecs ]; then if [ ! -f ${subjdir}/bvecs ]; then
echo "${subjdir}/bvecs not found" echo "${subjdir}/bvecs not found"
ExitUnlock ExitUnlock 1
fi fi
if [ ! -f ${subjdir}/bvals ]; then if [ ! -f ${subjdir}/bvals ]; then
echo "${subjdir}/bvals not found" echo "${subjdir}/bvals not found"
ExitUnlock ExitUnlock 1
fi fi
if [ `${FSLDIR}/bin/imtest ${subjdir}/data` -eq 0 ]; then if [ `${FSLDIR}/bin/imtest ${subjdir}/data` -eq 0 ]; then
echo "${subjdir}/data not found" echo "${subjdir}/data not found"
ExitUnlock ExitUnlock 1
fi fi
if [ `${FSLDIR}/bin/imtest ${subjdir}/nodif` -eq 0 ]; then if [ `${FSLDIR}/bin/imtest ${subjdir}/nodif` -eq 0 ]; then
echo "${subjdir}/nodif not found" echo "${subjdir}/nodif not found"
ExitUnlock ExitUnlock 1
fi fi
if [ `${FSLDIR}/bin/imtest ${subjdir}/nodif_brain_mask` -eq 0 ]; then if [ `${FSLDIR}/bin/imtest ${subjdir}/nodif_brain_mask` -eq 0 ]; then
echo "${subjdir}/nodif_brain_mask not found" echo "${subjdir}/nodif_brain_mask not found"
ExitUnlock ExitUnlock 1
fi fi
...@@ -228,7 +229,7 @@ echo 0 0 1 0 >> ${xfmdir}/eye.mat ...@@ -228,7 +229,7 @@ echo 0 0 1 0 >> ${xfmdir}/eye.mat
echo 0 0 0 1 >> ${xfmdir}/eye.mat echo 0 0 0 1 >> ${xfmdir}/eye.mat
echo "DONE" echo "DONE"
ExitUnlock ExitUnlock 0
......
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