Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tgstation-server/Update Server.bat
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if %GIT_EXIT% neq 0 (
)
if defined PUSHCHANGELOGTOGIT (
echo compiling change log
python tools\ss13_genchangelog.py html/changelog.html html/changelogs
python tools\ss13_genchangelog.py html/changelogs
if %ERRORLEVEL% == 0 (
echo pushing compiled changelog to server
git add -u html/changelog.html
Expand All @@ -58,7 +58,7 @@ call bin\copyfromgit.bat
if not defined PUSHCHANGELOGTOGIT (
echo compiling change log
cd gamecode\%AB%
call python tools\ss13_genchangelog.py html/changelog.html html/changelogs
call python tools\ss13_genchangelog.py html/changelogs
cd ..\..
)

Expand All @@ -84,4 +84,4 @@ rmdir /q gamefolder
mklink /d gamefolder gamecode\%AB% >nul
python bot\nudge.py %UPDATE_LOG_CHANNEL% "Update job finished. Update will take place next round." >nul 2>nul
echo Done. The update will automatically take place at round restart.
timeout 300
timeout 300
6 changes: 3 additions & 3 deletions tgstation-server/install.bat
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ echo Compiling for the first time.

echo Compiling change log.
cd gamecode\a
call python tools\ss13_genchangelog.py html/changelog.html html/changelogs
call python tools\ss13_genchangelog.py html/changelogs
cd ..\..
echo Compiling game.
call bin\build.bat
if %DM_EXIT% neq 0 echo DM compile failed.

echo Done. You may start the server using the start server program or change the game config in gamedata\config
echo Done. You may start the server using the start server program or change the game config in gamedata\config
pause

:ABORT
:ABORT
2 changes: 1 addition & 1 deletion tools/tgs4_scripts/PreSynchronize.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if(!$?){
}

Write-Host "Running changelog script..."
python3 tools/ss13_genchangelog.py html/changelog.html html/changelogs
python3 tools/ss13_genchangelog.py html/changelogs
if(!$?){
Write-Host "python3 returned non-zero!"
exit $LASTEXITCODE
Expand Down
2 changes: 1 addition & 1 deletion tools/tgs4_scripts/PreSynchronize.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pip3 install PyYaml beautifulsoup4
cd $1

echo "Running changelog script..."
python3 tools/ss13_genchangelog.py html/changelog.html html/changelogs
python3 tools/ss13_genchangelog.py html/changelogs

echo "Committing changes..."
git add html
Expand Down