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,13 @@
if ($args.Length -gt 1) {
# $args[0] = android-%d
# $args[1] = %d
$found = $args[0] -match 'android-(\d+)'
if ($found -and $matches[1] -ge $args[1]) {
Write-Output "yes"
} else {
Write-Output "no"
}
} else {
Write-Output "unknown"
}