2025-02-24 12:40:26 +13:00
|
|
|
#!/bin/sh
|
|
|
|
echo ""
|
|
|
|
echo "Welcome to EllieBot."
|
|
|
|
echo "Downloading the latest installer..."
|
|
|
|
root=$(pwd)
|
|
|
|
|
|
|
|
rm "$root/e-bin.sh" 1>/dev/null 2>&1
|
2025-02-24 13:59:39 +13:00
|
|
|
curl -L -o "$root/e-bin.sh" https://toastielab.dev/toastie_t0ast/ellie-bash-installer/raw/branch/v6/e-bin.sh
|
2025-02-24 12:40:26 +13:00
|
|
|
|
|
|
|
bash e-bin.sh
|
|
|
|
cd "$root"
|
|
|
|
rm "$root/e-bin.sh"
|
|
|
|
exit 0
|