Files
GS13NG/tgstation-server/bin/findbyond.bat
T

27 lines
585 B
Batchfile

@echo off
@dm.exe -h >nul 2>nul
IF %ERRORLEVEL% NEQ 9009 (
goto :eof
)
set PATH=%PATH%;%BYOND_LOCATION_PATH%
@dm.exe -h >nul 2>nul
IF %ERRORLEVEL% NEQ 9009 (
goto :eof
)
@"c:\Program Files (x86)\BYOND\bin\dm.exe" -h >nul 2>nul
IF %ERRORLEVEL% NEQ 9009 (
set "PATH=%PATH%;c:\Program Files (x86)\BYOND\bin\"
goto :eof
)
@"c:\Program Files\BYOND\bin\dm.exe" -h >nul 2>nul
IF %ERRORLEVEL% NEQ 9009 (
set "PATH=%PATH%;c:\Program Files\BYOND\bin\"
goto :eof
)
echo byond not found. Aborting. If byond is installed, set the GIT_LOCATION variable inside config.bat
timeout 60
exit 11