From 76c9a0191f5c97bb49c371b69125c623609eb54d Mon Sep 17 00:00:00 2001 From: LimePotato Date: Thu, 10 Aug 2023 12:47:52 -0600 Subject: [PATCH] Fix obosdi install --- obosfi | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/obosfi b/obosfi index 6b6af7b..54e6e80 100644 --- a/obosfi +++ b/obosfi @@ -1847,18 +1847,14 @@ obosdidownload(){ txtselectserver="Select source server :" txtback="Back" options=() - options+=("sourceforge.net" " (Recommended)") - options+=("github.com" "") + options+=("git.ouroboros.group" "(Recommended") sel=$(dialog --backtitle "${apptitle}" --title "${txtselectserver}" --cancel-button "${txtback}" --menu "" 0 0 0 \ "${options[@]}" \ 3>&1 1>&2 2>&3) if [ "$?" = "0" ]; then case ${sel} in - "sourceforge.net") - obosdiurl=obosdi.sourceforge.net/obosdi - ;; "github.com") - obosdiurl=matmoul.github.io/obosdi >obosdi + obosdiurl=git.ouroboros.group/Ouroboros/obosdi/raw/branch/master/obosdi > obosdi ;; esac fi