switch to apt from apt-get

This commit is contained in:
MickLesk
2026-08-01 22:20:27 +02:00
parent a686666abd
commit d5d336698e
11 changed files with 29 additions and 24 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ if [[ -f "/etc/alpine-release" ]]; then
INSTALL_DIR="$INSTALL_DIR_ALPINE"
elif [[ -f "/etc/debian_version" ]]; then
OS="Debian"
PKG_MANAGER_INSTALL="apt-get install -y"
PKG_MANAGER_INSTALL="apt install -y"
PKG_QUERY="dpkg -l"
INSTALL_DIR="$INSTALL_DIR_DEBIAN"
else