aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Allen <[email protected]>2017-11-08 08:30:34 -0600
committerGitHub <[email protected]>2017-11-08 08:30:34 -0600
commit0e1b6bd3f40c67cbe9a75ed5b0b7c8c919730520 (patch)
tree156647ba5ba7e11edd3e240b259fcce77dab6a45
parentf9e2bc714af2f99e220c4ca609cb50ce37209d02 (diff)
parent07352466831b7524ea72e113730a0c3be6825a22 (diff)
downloadkerl-0e1b6bd3f40c67cbe9a75ed5b0b7c8c919730520.tar.gz
kerl-0e1b6bd3f40c67cbe9a75ed5b0b7c8c919730520.tar.bz2
kerl-0e1b6bd3f40c67cbe9a75ed5b0b7c8c919730520.zip
Merge pull request #241 from dmitrivereshchagin/fix-check-dpkg
Fix requirements check on Debian-based systems
-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