diff --git a/tools/tgs4_scripts/PreSynchronize.bat b/tools/tgs4_scripts/PreSynchronize.bat deleted file mode 100644 index d2016e21ae2..00000000000 --- a/tools/tgs4_scripts/PreSynchronize.bat +++ /dev/null @@ -1,3 +0,0 @@ -@echo off - -powershell -NoProfile -ExecutionPolicy Bypass -File PreSynchronize.ps1 -game_path %1 diff --git a/tools/tgs4_scripts/PreSynchronize.ps1 b/tools/tgs4_scripts/PreSynchronize.ps1 deleted file mode 100644 index db8f0a30430..00000000000 --- a/tools/tgs4_scripts/PreSynchronize.ps1 +++ /dev/null @@ -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