Fix typo in linux/android processor detection.

This commit is contained in:
abbie 2024-11-13 16:30:52 +00:00
parent 6dbe52089f
commit 49354de8a5
Signed by: threeoh6000
GPG key ID: 801FE4AD456E922C

View file

@ -30,7 +30,7 @@ if [ "$hassed" -eq 1 ] && [ "$system_type" = "windows" ] && [ -z "$processor" ];
fi fi
if [ "$subtype" = "android" ]; then if [ "$subtype" = "android" ]; then
if [ -n "$(getprop ro.soc.manufacturer)$(getprop ro.soc.model)" ]; then if [ -n "$(getprop ro.soc.manufacturer)$(getprop ro.soc.model)" ]; then
machine="$(getprop ro.soc.manufacturer) $(getprop ro.soc.model)" processor="$(getprop ro.soc.manufacturer) $(getprop ro.soc.model)"
fi fi
fi fi
if [ "$hassed" -eq 1 ] && [ "$hasawk" -eq 1 ] && [ -n "$processor" ]; then if [ "$hassed" -eq 1 ] && [ "$hasawk" -eq 1 ] && [ -n "$processor" ]; then