idk how i missed these files and folders

This commit is contained in:
bryanthaboi
2026-07-17 21:31:08 -04:00
parent 0e4c3a630f
commit 938bb093e3
5968 changed files with 2204902 additions and 0 deletions
@@ -0,0 +1,15 @@
# $args[0] = source.properties
# $args[1] = NDK version to be checked
if ($args.Count -ne 2) {
Write-Output "unknown"
exit 1
}
$ndkVersion = (Select-String -Pattern "Pkg.Revision = (\d+)" -Path $args[0] | ForEach-Object { $_.Matches[0].Groups[1].Value })
if ($ndkVersion -ge $args[1]) {
Write-Output "yes"
} else {
Write-Output "no"
}