From c6536d7ba8a8b2b77620a1a23073430757834d72 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 10 Jun 2024 16:17:05 +0200 Subject: [PATCH] Use wget as with other installers --- install/app-gum.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/app-gum.sh b/install/app-gum.sh index 9311a9c..589f11b 100644 --- a/install/app-gum.sh +++ b/install/app-gum.sh @@ -1,7 +1,7 @@ # Gum is used for the Omakub commands for tailoring Omakub after the initial install cd ~/Downloads GUM_VERSION="0.14.1" # Use known good version -curl -sLo gum.deb "https://github.com/charmbracelet/gum/releases/latest/download/gum_${GUM_VERSION}_amd64.deb" +wget -O gum.deb "https://github.com/charmbracelet/gum/releases/latest/download/gum_${GUM_VERSION}_amd64.deb" sudo apt install -y ./gum.deb rm gum.deb cd -