7 lines
190 B
Batchfile
7 lines
190 B
Batchfile
|
@echo off
|
||
|
echo "Starting Lavalink server and waiting 20s..."
|
||
|
RUN "java -jar Lavalink/Lavalink.jar 1>/dev/null &" # showing only stderror
|
||
|
timeout /t 30
|
||
|
echo "Done."
|
||
|
RUN "python -u ./main.py"
|