diff --git a/oca-repos-manager.sh b/oca-repos-manager.sh index 523ce3b..8933df8 100644 --- a/oca-repos-manager.sh +++ b/oca-repos-manager.sh @@ -407,7 +407,7 @@ main_menu() { check_dependencies() { for cmd in "${@}"; do - command -v "${cmd}" >&2 /dev/null + command -v "${cmd}" > /dev/null local exitcode=$? if [[ "${exitcode}" -ne "0" ]]; then echo -e "\n${cmd} is missing. Please, install it. E.g.: apt install ${cmd}"