From 24a1d75cc6b6712cb312c100759dc9156f42b6cc Mon Sep 17 00:00:00 2001 From: Poag Date: Mon, 9 Jan 2017 19:03:36 +0000 Subject: [PATCH] Delete 40_nadekoinstall.sh --- init/40_nadekoinstall.sh | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 init/40_nadekoinstall.sh diff --git a/init/40_nadekoinstall.sh b/init/40_nadekoinstall.sh deleted file mode 100644 index 5222abe..0000000 --- a/init/40_nadekoinstall.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash -##Install NadekoBot -#Cleanup Old -rm -rf /root/NadekoBot - -#Get NadekoBot Version -if [[ "$VERSION" = dev ]]; then - 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 -else - curl -s https://api.github.com/repos/Kwoth/NadekoBot/releases/latest | grep browser_download_url | head -n 1 | cut -d '"' -f 4|wget -i - -O /root/NadekoBot.latest.zip -fi - -unzip /root/NadekoBot.latest.zip -d /root/NadekoBot - -#Sync any new data files -rsync --ignore-existing -r /root/NadekoBot/data /config - -#Remove data folder -rm -rf /root/NadekoBot/data