2016-05-05 14:42:47 +00:00
|
|
|
#!/bin/bash
|
|
|
|
##Install NadekoBot
|
2016-05-06 16:23:35 +00:00
|
|
|
#Cleanup Old
|
|
|
|
rm -rf /root/NadekoBot
|
2016-05-05 14:42:47 +00:00
|
|
|
|
|
|
|
#Get NadekoBot Latest
|
|
|
|
curl -s https://api.github.com/repos/Kwoth/NadekoBot/releases | grep browser_download_url | head -n 1 | cut -d '"' -f 4|wget -i - -O /root/NadekoBot.latest.zip &&\
|
2016-05-06 16:23:35 +00:00
|
|
|
unzip /root/NadekoBot.latest.zip -d /root/NadekoBot
|
2016-05-09 07:45:08 +00:00
|
|
|
|
|
|
|
#Sync any new data files
|
|
|
|
rsync --ignore-existing -r /root/NadekoBot/data /config
|
|
|
|
|
|
|
|
#Remove data folder
|
|
|
|
rm -rf /root/NadekoBot/data
|