Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pass correct paths for select_slice method. #10858

Merged
merged 1 commit into from
Aug 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Expand Up @@ -14,7 +14,9 @@ To install release candidates run `[sudo] gem install cocoapods --pre`

##### Bug Fixes

* None.
* Pass correct paths for `select_slice` method.
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
[#10430](https://github.com/CocoaPods/CocoaPods/issues/10430)


## 1.11.0.beta.1 (2021-08-09)
Expand Down
2 changes: 1 addition & 1 deletion lib/cocoapods/generator/copy_xcframework_script.rb
Expand Up @@ -161,7 +161,7 @@ def script
local basepath="$1"
local name="$2"
local package_type="$3"
local paths=("$@")
local paths=("${@:3}")

# Locate the correct slice of the .xcframework for the current architectures
select_slice "${paths[@]}"
Expand Down