mirror of
https://github.com/Suwayomi/TachideskJUI.git
synced 2025-12-10 06:42:05 +01:00
15 lines
306 B
PowerShell
15 lines
306 B
PowerShell
if ($(Split-Path -Path (Get-Location) -Leaf) -eq "scripts" ) {
|
|
Set-Location ..
|
|
}
|
|
|
|
if (Test-Path "src/main/resources/Tachidesk.jar" -PathType leaf)
|
|
{
|
|
Write-Output "Tachidesk.jar already exists"
|
|
}
|
|
else
|
|
{
|
|
&"./scripts/SetupWindows.ps1"
|
|
}
|
|
|
|
Write-Output "Building Msi package"
|
|
&"./gradlew" packageMsi |