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

[pilot][deliver] fix private method clone' called for #<Hash> on uploading app #20662

Merged
merged 1 commit into from Nov 12, 2022
Merged
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
2 changes: 1 addition & 1 deletion fastlane_core/lib/fastlane_core/itunes_transporter.rb
Expand Up @@ -873,7 +873,7 @@ def provider_ids

# Create .p8 file from api_key and provide api key info which contains .p8 file path
def api_key_with_p8_file_path(original_api_key)
api_key = original_api_key.clone
api_key = original_api_key.dup
api_key[:key_dir] = Dir.mktmpdir("deliver-")
# Specified p8 needs to be generated to call altool
File.open(File.join(api_key[:key_dir], "AuthKey_#{api_key[:key_id]}.p8"), "wb") do |p8|
Expand Down