mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 02:42:58 +00:00
fix fedora dependency check/install stdout
Signed-off-by: bcambl <blayne@blaynecampbell.com>
This commit is contained in:
parent
2e138eb99f
commit
fc0899b2ad
1 changed files with 2 additions and 2 deletions
|
@ -1645,9 +1645,9 @@ install_dependent_packages() {
|
|||
for i in "$@"; do
|
||||
printf " %b Checking for %s..." "${INFO}" "${i}"
|
||||
if "${PKG_MANAGER}" -q list installed "${i}" &> /dev/null; then
|
||||
printf "%b %b Checking for %s" "${OVER}" "${TICK}" "${i}"
|
||||
printf "%b %b Checking for %s\\n" "${OVER}" "${TICK}" "${i}"
|
||||
else
|
||||
printf "%b %b Checking for %s (will be installed)" "${OVER}" "${INFO}" "${i}"
|
||||
echo -e "${OVER} ${INFO} Checking for $i (will be installed)"
|
||||
installArray+=("${i}")
|
||||
fi
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue