Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build/create_frameworks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ create_xcframework() {
fi

local dir_suffix
dir_suffix=$(echo "$dir" | tr '[:upper:]' '[:lower:]' | sed 's/\//-/g')
local merged_lib="${output}/lib${target_library_name}-${dir_suffix}.a"
dir_suffix=$(echo "$dir" | tr '[:upper:]' '[:lower:]' | sed 's/\//_/g')
local merged_lib="${output}/lib${target_library_name}_${dir_suffix}.a"

# Remove the existing .a file if it exists.
if [ -f "${merged_lib}" ]; then
Expand Down
Loading