scripts: install-deps.sh: Add dnf as supported package manager

dnf is also supported so fix the error message.

Change-Id: I942a9d13f04a7aecfb02c132621b6336020330d3
This commit is contained in:
Markos Chandras 2017-05-08 12:44:02 +01:00
parent 15fa11e2af
commit deed8ecb66
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ elif [ -x '/usr/bin/dnf' ] || [ -x '/usr/bin/yum' ]; then
)
EXTRA_PKG_DEPS=()
else
echo "ERROR: Supported package manager not found. Supported: apt,yum,zypper"
echo "ERROR: Supported package manager not found. Supported: apt, dnf, yum, zypper"
fi
if ! $(python --version &>/dev/null); then