Skip to content

Commit 40e6f26

Browse files
committed
Fixed pluginPackage token.
1 parent dcea937 commit 40e6f26

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

ios/script/build.sh

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -273,20 +273,20 @@ function build_plugin()
273273

274274

275275
function 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

0 commit comments

Comments
 (0)