aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xkerl4
1 files changed, 2 insertions, 2 deletions
diff --git a/kerl b/kerl
index f45e541..f40fca0 100755
--- a/kerl
+++ b/kerl
@@ -338,9 +338,9 @@ _check_required_pkgs()
if [ -n "$has_dpkg" -a -n "$has_rpm" ]; then
echo "WARNING: You appear to have BOTH rpm and dpkg. This is very strange. No package checks done."
elif [ -n "$has_dpkg" ]; then
- retval=$(_check_dpkg)
+ check_dpkg
elif [ -n "$has_rpm" ]; then
- retval=$(_check_rpm)
+ _check_rpm
fi
fi
}