From c52eec1a8e607cf5ec4b5b8c3f6fcbad65ac1efe Mon Sep 17 00:00:00 2001
From: tteckster <tteckster@gmail.com>
Date: Tue, 9 Apr 2024 19:35:36 -0400
Subject: [PATCH] Update ombi-install.sh

tweak
---
 install/ombi-install.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/install/ombi-install.sh b/install/ombi-install.sh
index c5e631e79..f26599173 100644
--- a/install/ombi-install.sh
+++ b/install/ombi-install.sh
@@ -20,9 +20,9 @@ $STD apt-get install -y mc
 msg_ok "Installed Dependencies"
 
 msg_info "Installing Ombi"
-LATEST=$(curl -sL https://api.github.com/repos/Ombi-app/Ombi/releases/latest | grep '"tag_name":' | cut -d'"' -f4)
-# wget -q https://github.com/Ombi-app/Ombi/releases/download/${LATEST}/linux-x64.tar.gz
-wget -q https://github.com/Ombi-app/Ombi/releases/download/v4.43.2/linux-x64.tar.gz
+RELEASE=$(curl -sL https://api.github.com/repos/Ombi-app/Ombi/releases/latest | grep '"tag_name":' | cut -d'"' -f4)
+wget -q https://github.com/Ombi-app/Ombi/releases/download/${RELEASE}/linux-x64.tar.gz
+#wget -q https://github.com/Ombi-app/Ombi/releases/download/v4.43.2/linux-x64.tar.gz
 mkdir -p /opt/ombi
 tar -xzf linux-x64.tar.gz -C /opt/ombi
 msg_ok "Installed Ombi"