[MIRROR] Delete old changelog gen TGS script [MDB IGNORE] (#16502)

* Delete old changelog gen TGS script (#70159)

* Delete old changelog gen TGS script

Co-authored-by: Jordan Dominion <Cyberboss@users.noreply.github.com>
This commit is contained in:
SkyratBot
2022-09-28 12:11:44 +02:00
committed by GitHub
parent 7db8cb7348
commit be5256ad4f
2 changed files with 0 additions and 34 deletions
-3
View File
@@ -1,3 +0,0 @@
@echo off
powershell -NoProfile -ExecutionPolicy Bypass -File PreSynchronize.ps1 -game_path %1
-31
View File
@@ -1,31 +0,0 @@
param(
$game_path
)
cd $game_path
Write-Host "Installing pip dependencies..."
pip3 install PyYaml beautifulsoup4
if(!$?){
Write-Host "pip3 returned non-zero!"
exit $LASTEXITCODE
}
Write-Host "Running changelog script..."
python3 tools/ss13_genchangelog.py html/changelogs
if(!$?){
Write-Host "python3 returned non-zero!"
exit $LASTEXITCODE
}
Write-Host "Committing changes..."
git add html
if(!$?){
Write-Host "`git add` returned non-zero!"
exit $LASTEXITCODE
}
#we now don't care about failures
git commit -m "Automatic changelog compile, [ci skip]"
exit 0