Skip to content

Commit 62ab44d

Browse files
authored
Fix the build_android bash script (#248)
1 parent ed609d6 commit 62ab44d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_android.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ main() {
157157
unzip -q -d "${unzip_dir}" "${zip_name}"
158158

159159
# Get the list of srcaar files, to merge into later
160-
srcaar_list=$(find ${unzip_dir} -type f -name '*.srcaar')
160+
srcaar_list=($(find ${unzip_dir} -type f -name '*.srcaar'))
161161
zip_basename=$(basename ${zip_name})
162162
else
163163
# Unzip the other architectures into a different temp directory

0 commit comments

Comments
 (0)