mirror of
https://github.com/KabKebab/GS13.git
synced 2026-08-21 12:06:15 +01:00
27 lines
585 B
Batchfile
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 |