Files
gen1recomp/mobile/android/love/src/jni/detect_love.ps1
T
2026-07-17 21:31:08 -04:00

8 lines
128 B
PowerShell

$path = $args[0]
if (Test-Path -Path "$path/love/Android.mk") {
Write-Output "yes"
} else {
Write-Output "no"
}