Skip to content

Commit c101a87

Browse files
committed
fix: fixed issue in compile-android.sh script
1 parent d7bfc23 commit c101a87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compile-android.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if [ -z "$ANDROID_NDK_HOME" ]; then
88
exit 1
99
fi
1010

11-
if [ $RELEASE == "true" ]; then
11+
if [ "$RELEASE" = "true" ]; then
1212
echo "Building in release mode... (slow)";
1313
else
1414
echo "Building in debug mode... (fast)"

0 commit comments

Comments
 (0)