From afb156725e9f3ff66cbf5265c3f8b2daeb0f815c Mon Sep 17 00:00:00 2001 From: Daniel Bosscher Date: Tue, 22 Apr 2025 15:50:36 +0100 Subject: [PATCH] If re-running a failed install, app-gum.sh throws error My internet died during Omakub's install, causing a timeout during one of the package installs. Re-running Omakub install gave this error. E: Packages were downgraded and -y was used without --allow-downgrades. That seems to happen when running app-gum.sh. I added --allow-downgrades, resolved the issue for me. Thoughts? --- install/terminal/required/app-gum.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/terminal/required/app-gum.sh b/install/terminal/required/app-gum.sh index 4fc1e32..7efd2d6 100644 --- a/install/terminal/required/app-gum.sh +++ b/install/terminal/required/app-gum.sh @@ -2,6 +2,6 @@ cd /tmp GUM_VERSION="0.14.3" # Use known good version wget -qO gum.deb "https://github.com/charmbracelet/gum/releases/download/v${GUM_VERSION}/gum_${GUM_VERSION}_amd64.deb" -sudo apt-get install -y ./gum.deb +sudo apt-get install -y --allow-downgrades ./gum.deb rm gum.deb cd -