Fixed output

This commit is contained in:
Ivan Jurišić 2024-04-24 13:08:20 +02:00
parent 8b53f2dcc7
commit cf03249944

View File

@ -34,7 +34,7 @@ choice() {
check_deps_pkg() {
for NAME in "${PKG_DEPS[@]}"
do
dpkg -s $NAME > /dev/null
dpkg -s $NAME 2> /dev/null
CODE=$?
if ! [ "$CODE" -ne 1 ]; then
echo -ne "\nInstall $NAME ? "