fastlane-plugin-teak 1.0.4 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f5bc30b0714b25c63a2260d0a970c15e2a73863e31b1341be2937f0cc1d579d7
4
- data.tar.gz: 34008cbdce480b35de61e59888f7a54d228fe0160ee3dac48bbc308896f813b1
3
+ metadata.gz: 542a49470c11daa9a937247622b63e2442c2e6ddefa3927555450c8af45d9d52
4
+ data.tar.gz: 788068337a363fdf26a1e456191ed156613b1a971df48f4c6036f43ccb423226
5
5
  SHA512:
6
- metadata.gz: 44f4f04dec91017bec43310317ad2d6feaed6072d39c49ada874ce3c1539463a6f027e6a11f2086ece8e521c24e0924f5ca5eebe4fe57aab5c75bebc5298d076
7
- data.tar.gz: dfacbb2ceb1c1f47cdf097c1c48a215968fcd8ad47ea966fd3145a97f8dbd84b1679887204d8b8c2f4cf3ca5f96ed98b248d739662eb0ad4357148d6bcb0b5f3
6
+ metadata.gz: 9272bbcc9022316bd3dd5f5cecb3be6cdcd78f5e1801cf1a90bcf37322f0d365a68caa61586ff352ad517d2c678de1c24aad24269eceb5bd1574fc3f8680bc0d
7
+ data.tar.gz: e4589d98b455352183fe8fa7b48d2d84f1e8f15476212ded079cfdc48044007df3bf7d1753ec971c27c8fb5839db7d5e930b4e4387269ac141b2fd3975e19c6b
@@ -30,11 +30,12 @@ module Fastlane
30
30
  )
31
31
 
32
32
  # Download the certificates
33
- params = FastlaneCore::Configuration.create(Match::Options.available_options, {
33
+ opts = {
34
34
  app_identifier: app_id,
35
35
  type: type,
36
36
  keychain_name: keychain_name
37
- }.merge(match_options))
37
+ }.merge(match_options)
38
+ params = FastlaneCore::Configuration.create(Match::Options.available_options, opts)
38
39
  Actions::MatchAction.run(params)
39
40
 
40
41
  # Get the location of the provisioning profile
@@ -47,7 +48,7 @@ module Fastlane
47
48
  Dir.mktmpdir do |tmpdir|
48
49
  p12_password = SecureRandom.hex
49
50
  p12_file = File.join(tmpdir, "temp.p12")
50
- Actions.sh("security", "export", "-k", keychain_name, "-t", "identities",
51
+ Actions.sh("security", "export", "-k", opts[:keychain_name], "-t", "identities",
51
52
  "-f", "pkcs12", "-P", p12_password, "-o", p12_file, log: false)
52
53
 
53
54
  # Call block
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Teak
3
- VERSION = "1.0.4"
3
+ VERSION = "1.0.5"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-teak
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pat Wilson