Hopefully nailed down why the e-bin script keeps on failing

This commit is contained in:
Toastie 2025-02-24 12:40:26 +13:00
parent bea13dd124
commit a8b71e26f1
Signed by: toastie_t0ast
GPG key ID: 0861BE54AD481DC7
3 changed files with 441 additions and 422 deletions

13
e-install.sh Normal file
View file

@ -0,0 +1,13 @@
#!/bin/sh
echo ""
echo "Welcome to EllieBot."
echo "Downloading the latest installer..."
root=$(pwd)
rm "$root/e-bin.sh" 1>/dev/null 2>&1
curl -L -o "$root/e-bin.sh" https://toastielab.dev/EllieBotDevs/ellie-bash-installer/raw/branch/v6/e-bin.sh
bash e-bin.sh
cd "$root"
rm "$root/e-bin.sh"
exit 0