summaryrefslogtreecommitdiff
path: root/src/fifa.sh
diff options
context:
space:
mode:
authorDieter Plaetinck <dieter@plaetinck.be>2008-11-03 10:47:13 +0100
committerDieter Plaetinck <dieter@plaetinck.be>2008-11-03 10:47:13 +0100
commite5e0c99354dd9a7c05c2ef643d2b4787ffdf4e5a (patch)
tree545556fa290d1bec7e29773a7d5d1bd497c30445 /src/fifa.sh
parent71b105bbf53ad735aa94230ec4ac764813392e8c (diff)
return code of worker/phase fix
Diffstat (limited to 'src/fifa.sh')
-rwxr-xr-xsrc/fifa.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/fifa.sh b/src/fifa.sh
index 38b681f..69d8b34 100755
--- a/src/fifa.sh
+++ b/src/fifa.sh
@@ -147,10 +147,13 @@ execute ()
then
PWD_BACKUP=`pwd`
$1_$2
+ ret=$?
cd $PWD_BACKUP
else
die_error "$1 $2 is not defined!"
fi
+
+ return $?
}