Files
Bubberstation/tools/tgs4_scripts/PreCompile.bat
SkyratBot c3fb3a0fb9 [MIRROR] Fix PreCompile.bat failing with spaced paths (#4723)
* Fix PreCompile.bat failing with spaced paths (#58184)

* Fix PreCompile.bat failing with spaced paths

* Undo spacification

* Fix PreCompile.bat failing with spaced paths

Co-authored-by: Jordan Brown <Cyberboss@users.noreply.github.com>
2021-04-07 14:53:50 +01:00

16 lines
361 B
Batchfile

@echo off
cd /D "%~dp0"
set TG_BOOTSTRAP_CACHE=%cd%
IF NOT %1 == "" (
rem TGS4: we are passed the game directory on the command line
cd %1
) ELSE IF EXIST "..\Game\B\tgstation.dmb" (
rem TGS3: Game/B/tgstation.dmb exists, so build in Game/A
cd ..\Game\A
) ELSE (
rem TGS3: Otherwise build in Game/B
cd ..\Game\B
)
set CBT_BUILD_MODE=TGS
tools\build\build