ellie-bash-installer/e-rebuild.sh

15 lines
301 B
Bash
Raw Normal View History

2024-06-25 01:48:12 -07:00
#!/bin/sh
root=$(pwd)
# remove old backup
rm -rf elliebot_old 1>/dev/null 2>&1
# make a new backup
cp -rT elliebot elliebot_old 1>/dev/null 2>&1
2024-06-25 03:22:09 -07:00
wget -q -N https://toastielab.dev/Emotions-stuff/ellie-bash-installer/raw/branch/v5/rebuild.sh
2024-06-25 01:48:12 -07:00
bash rebuild.sh
cd "$root"
2024-06-25 01:49:35 -07:00
rm "$root/e-rebuild.sh"
2024-06-25 01:48:12 -07:00
exit 0