15 lines
747 B
Batchfile
15 lines
747 B
Batchfile
@echo off
|
|
echo Starting all servers...
|
|
|
|
REM Open the Velocity proxy in a new Git Bash window
|
|
start "" "C:\Program Files\Git\bin\bash.exe" -c "C:/Users/pomam/Documents/Feyhallow/Development Environment/Development Servers/Proxy/startup-proxy-dev.sh"
|
|
|
|
REM Open the first Minecraft server in a new Git Bash window
|
|
start "" "C:\Program Files\Git\bin\bash.exe" -c "C:/Users/pomam/Documents/Feyhallow/Development Environment/Development Servers/Lobby/startup-server-dev.sh"
|
|
|
|
REM Open the second Minecraft server in a new Git Bash window
|
|
start "" "C:\Program Files\Git\bin\bash.exe" -c "C:/Users/pomam/Documents/Feyhallow/Development Environment/Development Servers/Survie/startup-server-dev.sh"
|
|
|
|
echo All servers are starting in separate windows!
|
|
pause
|