We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25698f0 commit 380d51cCopy full SHA for 380d51c
build.sh
@@ -3,7 +3,7 @@ set -e
3
4
# Define the targets.
5
API="30"
6
-ALLOWED=("armeabi-v7a" "arm64-v8a" "x86" "x86_64")
+ARCHITECTURES=("armeabi-v7a" "arm64-v8a" "x86" "x86_64")
7
8
9
help() {
@@ -35,7 +35,7 @@ fi
35
36
architecture="$1"
37
38
-if [[ ! " ${ALLOWED[@]} " =~ " $architecture " ]]; then
+if [[ ! " ${ARCHITECTURES[@]} " =~ " $architecture " ]]; then
39
echo "Error: '$architecture' is not in the allowed archs"
40
help
41
exit 1
0 commit comments