Updated links in scripts.

This commit is contained in:
Toastie 2024-12-22 20:05:04 +13:00
parent f4fe7bdfb7
commit ce3d30c033
Signed by: toastie_t0ast
GPG key ID: 27F3B6855AFD40A4
6 changed files with 9 additions and 9 deletions

View file

@ -26,7 +26,7 @@ while [ $choice -eq 4 ]; do
read choice read choice
if [ $choice -eq 1 ] ; then 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 $? bash detectOS.sh > /dev/null || exit $?
echo "" echo ""
@ -41,7 +41,7 @@ read choice
if [[ "$HEADHASH" != "$UPSTREAMHASH" ]]; then if [[ "$HEADHASH" != "$UPSTREAMHASH" ]]; then
echo "Update found, this may take a few minutes... " echo "Update found, this may take a few minutes... "
cd $root 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 cd elliebot/output
dotnet EllieBot.dll dotnet EllieBot.dll
else else

View file

@ -2,7 +2,7 @@
root=$(pwd) 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 $? bash detectOS.sh > /dev/null || exit $?
# remove old backup but store the database # 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 mv -fT elliebot elliebot_old 1>/dev/null 2>&1
# clone new version # 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 bash rebuild.sh
cd "$root" cd "$root"

View file

@ -6,7 +6,7 @@ echo ""
root=$(pwd) root=$(pwd)
choice=9 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_menu="e-menu.sh"
script_prereq="e-prereq.sh" script_prereq="e-prereq.sh"

View file

@ -8,7 +8,7 @@ function INSTALL_YTDLP {
chmod a+rx ~/.local/bin/yt-dlp 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)) declare DETECTED=($(bash detectOS.sh))
if [[ ${DETECTED[0]} = "" ]]; then exit 1; fi if [[ ${DETECTED[0]} = "" ]]; then exit 1; fi

View file

@ -7,7 +7,7 @@ rm -rf elliebot_old 1>/dev/null 2>&1
# make a new backup # make a new backup
cp -rT elliebot elliebot_old 1>/dev/null 2>&1 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 bash rebuild.sh
cd "$root" cd "$root"

View file

@ -5,7 +5,7 @@ echo "Downloading the latest installer..."
root=$(pwd) root=$(pwd)
rm "$root/e-menu.sh" 1>/dev/null 2>&1 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 bash e-menu.sh
cd "$root" cd "$root"