Fix dev install not being able to be upgraded

This commit is contained in:
crschnick
2025-12-30 00:51:58 +00:00
parent b01eb777da
commit e1b64794e0

View File

@@ -152,7 +152,7 @@ public class AppInstaller {
runinstaller() {
echo "Installing downloaded .deb installer ..."
echo "+ sudo apt install \\"%s\\""
DEBIAN_FRONTEND=noninteractive sudo apt install -y "%s" || return 1
DEBIAN_FRONTEND=noninteractive sudo apt install --allow-downgrades -y "%s" || return 1
%s || return 1
}