mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-31 12:01:47 +00:00
- Make names version independent - Version .yml file (Will I write the code to ever use it, who tf knows?) - Add WatchdogLaunch.sh to .yml - Remove defunct PreSynchronize script. - Cargo isn't needed in WatchdogLaunch - Why are we running apt outside of the if? - grep was only needed for the LinuxOneShot (old tool) - Bring common code into one file TODO: - [x] Test this shit - Added a test app, ran locally, verified the scripts work, added it to CI --------- Co-authored-by: John Willard <53777086+JohnFulpWillard@users.noreply.github.com> Co-authored-by: san7890 <the@san7890.com>
16 lines
362 B
Batchfile
16 lines
362 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
|