2026.01.29-301e13929

This commit is contained in:
Intege-rs
2026-01-29 19:59:39 -05:00
parent 480cf742c8
commit 72c1df79ca
530 changed files with 9997 additions and 5306 deletions

View File

@@ -1,10 +1,12 @@
$ErrorActionPreference = "Stop"
$branch = git rev-parse --abbrev-ref HEAD
# Move to the git root if we arn't already there
git rev-parse --show-toplevel | Set-Location
# get the server jar from the install directory ( in future support pre-release )
$server_jar = resolve-path "$env:APPDATA/Hytale/install/release/package/game/latest/Server/HytaleServer.jar"
$server_jar = resolve-path "$env:APPDATA/Hytale/install/$branch/package/game/latest/Server/HytaleServer.jar"
# clear the source directory
Get-ChildItem -Path "src" | Remove-Item -Recurse -Force -Confirm:$false