Compare commits

2 Commits

Author SHA1 Message Date
Intege-rs
98945aa42e 2026.02.17-255364b8e 2026-02-17 10:19:58 -05:00
Intege-rs
74a97c7da9 2026.02.06-aa1b071c2 2026-02-06 03:24:16 -05:00
2 changed files with 2 additions and 4 deletions

View File

@@ -1,12 +1,10 @@
$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/$branch/package/game/latest/Server/HytaleServer.jar" $server_jar = resolve-path "$env:APPDATA/Hytale/install/release/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/release/package/game/latest/Server/HytaleServer.jar")) implementation(files("${System.getenv("APPDATA")}/Hytale/install/pre-release/package/game/latest/Server/HytaleServer.jar"))
} }
} }