[bugfix] Wrong return value check

Found by Alexey Maximov
This commit is contained in:
Nico Schottelius 2006-10-31 07:58:54 +01:00
parent 50c75ccf43
commit b78a48917e
1 changed files with 2 additions and 1 deletions

View File

@ -269,9 +269,10 @@ while [ "$i" -lt "$no_sources" ]; do
if [ -x "$c_pre_exec" ]; then
echo "Executing ${c_pre_exec} ..."
"$c_pre_exec"
ret=$?
echo "Finished ${c_pre_exec}."
if [ $? -ne 0 ]; then
if [ $ret -ne 0 ]; then
echo "$c_pre_exec failed, aborting backup."
exit 1
fi