We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f252607 commit 2b3c81bCopy full SHA for 2b3c81b
install.sh
@@ -33,17 +33,17 @@ else
33
SYSTEM_ARCH=x86
34
fi
35
36
-geco "[INFO] -SDK: $SDK"
+geco "[INFO] -API_Level: $SDK"
37
geco "[INFO] -Platform: $SYSTEM_ARCH"
38
39
# Ensure Android version
40
if test "$SDK" -lt "$HOUDINI_API"; then
41
- geco "\n[!!!] This package only supports Android11." && exit 101
+ geco "\n[!!!] API_Level could not lower than $HOUDINI_API." && exit 101
42
43
44
# Ensure Device Architecture
45
if test "$SYSTEM_ARCH" != "$HOUDINI_ARCH"; then
46
- geco "\n[!!!] Unsupport Platform: -$SYSTEM_ARCH ;This package only supports x86_64 devices!" && exit 101
+ geco "\n[!!!] This package only supports $HOUDINI_ARCH devices!" && exit 101
47
48
49
# Before installation
0 commit comments