Files
TachideskJUI/scripts/BuildWindowsMsi.ps1
2021-03-25 14:43:19 -04:00

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