Skip to content

Commit cd39c11

Browse files
committed
fix: android guard toolchains folder creation
1 parent 8d7b2cf commit cd39c11

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

platforms/build-android.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
set -e
44

5-
mkdir -p toolchains
5+
if [ ! -d "toolchains" ]; then
6+
mkdir -p toolchains
7+
fi
68

79
export NDK_VER_DOWNLOAD="r28-beta1"
810
export NDK_VER_DESC="r28-beta1"

0 commit comments

Comments
 (0)