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
+15
View File
@@ -0,0 +1,15 @@
# $1 = source.properties
# $2 = NDK version to be checked
if [ $# -ne 2 ]; then
echo "unknown"
exit 1
fi
ndkVersion=$(grep -Po 'Pkg.Revision = (\d+)' "$1" | grep -Po '\d+')
if [ "$ndkVersion" -ge "$2" ]; then
echo "yes"
else
echo "no"
fi