This commit is contained in:
Ivan Jurišić 2023-12-08 10:34:25 +01:00
parent 76738a05f7
commit 6267b2c9cc
2 changed files with 4 additions and 4 deletions

View File

@ -31,7 +31,7 @@ choice() {
done
}
check_deps() {
check_deps_pkg() {
for NAME in "${PKG_DEPS[@]}"
do
dpkg -l $NAME > /dev/null
@ -60,5 +60,5 @@ composer_install() {
#### Main
check_root
check_deps
check_deps_pkg
composer_install

View File

@ -36,7 +36,7 @@ choice() {
done
}
check_deps() {
check_deps_pkg() {
for NAME in "${PKG_DEPS[@]}"
do
dpkg -l $NAME > /dev/null
@ -58,7 +58,7 @@ for NAME in "${PKG_DEPS[@]}"
#### Main
check_root
check_deps
check_deps_pkg
echo -ne "\nYou want to install dbeaver-ce ($PKG_NAME)? "
if choice 2>/dev/null; then