File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
Sources/TokenStore/KeychainRelated Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,6 @@ import Security
12
12
struct KeychainService {
13
13
let secureStoreQueryable : KeychainStoreQueryable
14
14
15
- init ( secureStoreQueryable: KeychainStoreQueryable ) {
16
- self . secureStoreQueryable = secureStoreQueryable
17
- }
18
-
19
15
func set< T: Encodable > ( _ value: T ? , key: String ) throws {
20
16
guard let json = value? . dictionary,
21
17
let data = try ? JSONSerialization . data ( withJSONObject: json, options: JSONSerialization . WritingOptions ( ) )
Original file line number Diff line number Diff line change @@ -173,6 +173,7 @@ private_lane :create_github_pull_request do |options|
173
173
sh ( "git checkout -b #{ commit_version_tag } " )
174
174
sh ( "git add ." )
175
175
sh ( "git commit -am \" #{ commit_title } \" " )
176
+ sh ( "git config --global http.postBuffer 500M" )
176
177
sh ( "git push origin -u #{ commit_version_tag } " )
177
178
178
179
if dry_run == true
You can’t perform that action at this time.
0 commit comments