RMusicBot/install.sh

16 lines
210 B
Bash
Raw Normal View History

2018-11-21 09:08:18 +00:00
#!/bin/bash
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