From deed8ecb6609a76f6deb9b9eb934115201f55a4f Mon Sep 17 00:00:00 2001 From: Markos Chandras Date: Mon, 8 May 2017 12:44:02 +0100 Subject: [PATCH] scripts: install-deps.sh: Add dnf as supported package manager dnf is also supported so fix the error message. Change-Id: I942a9d13f04a7aecfb02c132621b6336020330d3 --- scripts/install-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install-deps.sh b/scripts/install-deps.sh index b622593ff..2e61c7f2f 100644 --- a/scripts/install-deps.sh +++ b/scripts/install-deps.sh @@ -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