mirror of
https://github.com/Suwayomi/TachideskJUI.git
synced 2025-12-10 06:42:05 +01:00
9 lines
342 B
PowerShell
9 lines
342 B
PowerShell
if ($(Split-Path -Path (Get-Location) -Leaf) -eq "scripts" ) {
|
|
Set-Location ..
|
|
}
|
|
|
|
Write-Output "Writing ci gradle.properties"
|
|
if (!(Test-Path -Path ".gradle")) {
|
|
New-Item -ItemType Directory -Force -Path ".gradle" -ErrorAction SilentlyContinue
|
|
}
|
|
Copy-Item ".github/runner-files/ci-gradle.properties" ".gradle/gradle.properties" -Force |