aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitri Vereshchagin <[email protected]>2017-11-08 14:17:48 +0300
committerDmitri Vereshchagin <[email protected]>2017-11-08 14:20:01 +0300
commit07352466831b7524ea72e113730a0c3be6825a22 (patch)
tree156647ba5ba7e11edd3e240b259fcce77dab6a45
parentf9e2bc714af2f99e220c4ca609cb50ce37209d02 (diff)
downloadkerl-07352466831b7524ea72e113730a0c3be6825a22.tar.gz
kerl-07352466831b7524ea72e113730a0c3be6825a22.tar.bz2
kerl-07352466831b7524ea72e113730a0c3be6825a22.zip
Fix requirements check on Debian-based systems
Underscore was missing in function name.
-rwxr-xr-xkerl2
1 files changed, 1 insertions, 1 deletions
diff --git a/kerl b/kerl
index c250983..45ce070 100755
--- a/kerl
+++ b/kerl
@@ -339,7 +339,7 @@ _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
- check_dpkg
+ _check_dpkg
elif [ -n "$has_rpm" ]; then
_check_rpm
fi