Compare commits

3 Commits

Author SHA1 Message Date
Intege-rs
4dcc723c9c 2026.02.11-255364b8e 2026-02-11 18:06:52 -05:00
Intege-rs
8988b1dc65 2026.02.06-0baf7c5aa 2026-02-06 23:08:15 -05:00
Intege-rs
72c1df79ca 2026.01.29-301e13929 2026-01-29 19:59:39 -05:00
2 changed files with 4 additions and 2 deletions

View File

@@ -1,10 +1,12 @@
$ErrorActionPreference = "Stop" $ErrorActionPreference = "Stop"
$branch = git rev-parse --abbrev-ref HEAD
# Move to the git root if we arn't already there # Move to the git root if we arn't already there
git rev-parse --show-toplevel | Set-Location git rev-parse --show-toplevel | Set-Location
# get the server jar from the install directory ( in future support pre-release ) # 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 # clear the source directory
Get-ChildItem -Path "src" | Remove-Item -Recurse -Force -Confirm:$false Get-ChildItem -Path "src" | Remove-Item -Recurse -Force -Confirm:$false

View File

@@ -13,7 +13,7 @@ repositories {
dependencies { dependencies {
if (Os.isFamily(Os.FAMILY_WINDOWS)) { if (Os.isFamily(Os.FAMILY_WINDOWS)) {
implementation(files("${System.getenv("APPDATA")}/Hytale/install/pre-release/package/game/latest/Server/HytaleServer.jar")) implementation(files("${System.getenv("APPDATA")}/Hytale/install/release/package/game/latest/Server/HytaleServer.jar"))
} }
} }