ellie-bash-installer/e-install.sh

13 lines
300 B
Bash
Raw Permalink Normal View History

#!/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
bash e-bin.sh
cd "$root"
rm "$root/e-bin.sh"
exit 0