From ce3d30c033170dfb9aa84ff42fe7bb1c8e9dce94 Mon Sep 17 00:00:00 2001 From: Toastie Date: Sun, 22 Dec 2024 20:05:04 +1300 Subject: [PATCH] Updated links in scripts. --- e-are.sh | 4 ++-- e-download.sh | 6 +++--- e-menu.sh | 2 +- e-prereq.sh | 2 +- e-rebuild.sh | 2 +- linuxAIO.sh | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/e-are.sh b/e-are.sh index 457dbc8..9a46dab 100644 --- a/e-are.sh +++ b/e-are.sh @@ -26,7 +26,7 @@ while [ $choice -eq 4 ]; do read choice if [ $choice -eq 1 ] ; then - wget -q -N https://toastielab.dev/Emotions-stuff/ellie-bash-installer/raw/branch/v5/detectOS.sh + wget -q -N https://toastielab.dev/EllieBotDevs/ellie-bash-installer/raw/branch/v5/detectOS.sh bash detectOS.sh > /dev/null || exit $? echo "" @@ -41,7 +41,7 @@ read choice if [[ "$HEADHASH" != "$UPSTREAMHASH" ]]; then echo "Update found, this may take a few minutes... " cd $root - wget -N https://toastielab.dev/Emotions-stuff/ellie-bash-installer/raw/branch/v5/e-download.sh && bash "$root/e-download.sh" + wget -N https://toastielab.dev/EllieBotDevs/ellie-bash-installer/raw/branch/v5/e-download.sh && bash "$root/e-download.sh" cd elliebot/output dotnet EllieBot.dll else diff --git a/e-download.sh b/e-download.sh index 1c21b72..f74071a 100644 --- a/e-download.sh +++ b/e-download.sh @@ -2,7 +2,7 @@ root=$(pwd) -wget -q -N https://toastielab.dev/Emotions-stuff/ellie-bash-installer/raw/branch/v5/detectOS.sh +wget -q -N https://toastielab.dev/EllieBotDevs/ellie-bash-installer/raw/branch/v5/detectOS.sh bash detectOS.sh > /dev/null || exit $? # remove old backup but store the database @@ -25,9 +25,9 @@ rm -rf elliebot_old 1>/dev/null 2>&1 mv -fT elliebot elliebot_old 1>/dev/null 2>&1 # clone new version -git clone -b v5 --recursive --depth 1 https://toastielab.dev/Emotions-stuff/elliebot +git clone -b v5 --recursive --depth 1 https://toastielab.dev/EllieBotDevs/elliebot -wget -q -N https://toastielab.dev/Emotions-stuff/ellie-bash-installer/raw/branch/v5/rebuild.sh +wget -q -N https://toastielab.dev/EllieBotDevs/ellie-bash-installer/raw/branch/v5/rebuild.sh bash rebuild.sh cd "$root" diff --git a/e-menu.sh b/e-menu.sh index 99e37d0..63be429 100644 --- a/e-menu.sh +++ b/e-menu.sh @@ -6,7 +6,7 @@ echo "" root=$(pwd) choice=9 -base_url="https://toastielab.dev/Emotions-stuff/ellie-bash-installer/raw/branch/v5" +base_url="https://toastielab.dev/EllieBotDevs/ellie-bash-installer/raw/branch/v5" script_menu="e-menu.sh" script_prereq="e-prereq.sh" diff --git a/e-prereq.sh b/e-prereq.sh index ec7b030..1dd2b09 100644 --- a/e-prereq.sh +++ b/e-prereq.sh @@ -8,7 +8,7 @@ function INSTALL_YTDLP { chmod a+rx ~/.local/bin/yt-dlp } -wget -q -N https://toastielab.dev/Emotions-stuff/ellie-bash-installer/raw/branch/v5/detectOS.sh +wget -q -N https://toastielab.dev/EllieBotDevs/ellie-bash-installer/raw/branch/v5/detectOS.sh declare DETECTED=($(bash detectOS.sh)) if [[ ${DETECTED[0]} = "" ]]; then exit 1; fi diff --git a/e-rebuild.sh b/e-rebuild.sh index 85244c1..03f1eb4 100644 --- a/e-rebuild.sh +++ b/e-rebuild.sh @@ -7,7 +7,7 @@ rm -rf elliebot_old 1>/dev/null 2>&1 # make a new backup cp -rT elliebot elliebot_old 1>/dev/null 2>&1 -wget -q -N https://toastielab.dev/Emotions-stuff/ellie-bash-installer/raw/branch/v5/rebuild.sh +wget -q -N https://toastielab.dev/EllieBotDevs/ellie-bash-installer/raw/branch/v5/rebuild.sh bash rebuild.sh cd "$root" diff --git a/linuxAIO.sh b/linuxAIO.sh index ff222fa..9c682c9 100644 --- a/linuxAIO.sh +++ b/linuxAIO.sh @@ -5,7 +5,7 @@ echo "Downloading the latest installer..." root=$(pwd) rm "$root/e-menu.sh" 1>/dev/null 2>&1 -wget -N https://toastielab.dev/Emotions-stuff/ellie-bash-installer/raw/branch/v5/e-menu.sh +wget -N https://toastielab.dev/EllieBotDevs/ellie-bash-installer/raw/branch/v5/e-menu.sh bash e-menu.sh cd "$root"