Skip to content

Commit 4c3cc57

Browse files
authored
chore: Update fastlane script (#911)
1 parent 1ce7554 commit 4c3cc57

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

Sources/TokenStore/KeychainRelated/KeychainService.swift

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ import Security
1212
struct KeychainService {
1313
let secureStoreQueryable: KeychainStoreQueryable
1414

15-
init(secureStoreQueryable: KeychainStoreQueryable) {
16-
self.secureStoreQueryable = secureStoreQueryable
17-
}
18-
1915
func set<T: Encodable>(_ value: T?, key: String) throws {
2016
guard let json = value?.dictionary,
2117
let data = try? JSONSerialization.data(withJSONObject: json, options: JSONSerialization.WritingOptions())

fastlane/Fastfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@ private_lane :create_github_pull_request do |options|
173173
sh("git checkout -b #{commit_version_tag}")
174174
sh("git add .")
175175
sh("git commit -am \"#{commit_title}\"")
176+
sh("git config --global http.postBuffer 500M")
176177
sh("git push origin -u #{commit_version_tag}")
177178

178179
if dry_run == true

0 commit comments

Comments
 (0)