File tree Expand file tree Collapse file tree 1 file changed +15
-15
lines changed Expand file tree Collapse file tree 1 file changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -273,20 +273,20 @@ function build_plugin()
273273
274274
275275function merge_string_array() {
276- local arr=(" $@ " ) # Accept array as input
277- local result=" "
278- local first=true
279-
280- for str in " ${arr[@]} " ; do
281- if [ " $first " = true ]; then
282- result=" $str "
283- first=false
284- else
285- result=" $result , $str "
286- fi
287- done
288-
289- echo " $result "
276+ local arr=(" $@ " ) # Accept array as input
277+ local result=" "
278+ local first=true
279+
280+ for str in " ${arr[@]} " ; do
281+ if [ " $first " = true ]; then
282+ result=" $str "
283+ first=false
284+ else
285+ result=" $result , $str "
286+ fi
287+ done
288+
289+ echo " $result "
290290}
291291
292292
@@ -347,7 +347,7 @@ function create_zip_archive()
347347 s/@pluginName@/$PLUGIN_NAME /g;
348348 s/@pluginVersion@/$PLUGIN_VERSION /g;
349349 s/@pluginNodeName@/$PLUGIN_NODE_TYPE /g;
350- s/@pluginPackageName @/$PLUGIN_PACKAGE_NAME /g;
350+ s/@pluginPackage @/$PLUGIN_PACKAGE_NAME /g;
351351 s/@pluginDependencies@/$ANDROID_DEPENDENCIES /g;
352352 s/@iosFrameworks@/$( merge_string_array $IOS_FRAMEWORKS ) /g;
353353 s/@iosLinkerFlags@/$( merge_string_array $IOS_LINKER_FLAGS ) /g
You can’t perform that action at this time.
0 commit comments