13 lines
292 B
Bash
Executable File
13 lines
292 B
Bash
Executable File
#!/bin/bash
|
||
|
||
if [ -f /config.txt ]; then
|
||
echo "configuration file found"
|
||
mv /config.txt .
|
||
fi
|
||
|
||
if [ ! -f JMusicBot-${VERSION}.jar ]; then
|
||
wget https://github.com/jagrosh/MusicBot/releases/download/${VERSION}/JMusicBot-${VERSION}.jar
|
||
fi
|
||
|
||
java -Dnogui=true -jar JMusicBot-${VERSION}.jar
|