RMusicBot/install.sh

18 lines
220 B
Bash
Raw Normal View History

2018-11-21 09:08:18 +00:00
#!/bin/bash
2018-11-26 17:16:56 +00:00
git pull
2018-11-21 09:08:18 +00:00
mkdir -p install
cp bot.conf install/
cp start.sh install/
cargo update
cargo build --release
sudo systemctl stop music-bot
2018-11-21 09:08:18 +00:00
cp target/release/RMusicBot install/
sudo systemctl start music-bot