fastlane_core 0.4.0 → 0.4.1

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
  SHA1:
3
- metadata.gz: d5afcd707878681d7b4e435439ee0a7d73267127
4
- data.tar.gz: 878ceff4f92ae2e9a72c24abfe486d32b49f2d48
3
+ metadata.gz: 1aab3eb194c1d70e8ecabbb26e69c2bbb8282e61
4
+ data.tar.gz: 665564a58d21617e7ee39884ef8851d82df9dc79
5
5
  SHA512:
6
- metadata.gz: ac28d4def21d7d0c921c7d4b98951d122da6bdf4577dabe9c585bb92e86817ff4d0620ab707ec2fbc5626a3f1c6649ddc0becea3e95a3d0d465482f809bdb11a
7
- data.tar.gz: 7be301ca0504dfaf9db335802adbebe1ed827783cce41e113f28df5a56873b1ab8927e34489e3b7b5e2d6e08154f50536690b6dbaed11b5679e2b03ca706dffa
6
+ metadata.gz: 336fea181bb75f59a3159abc2a28ab743c0b9ec26eeb586025fc9d3d491262e59d90b2a8ef39852a03d1156dd1551ed36e7eb89d4002d45712678202072a7235
7
+ data.tar.gz: 943bf036c7ddb74eb9fc303aaf2fe826b73b2be3ba2b2d77480a26fbe6de3494b42618f924ed6c09b0decbefcaa7423ba35803034a8a55e4cb2fa1bfd929c682
@@ -68,12 +68,7 @@ module FastlaneCore
68
68
 
69
69
  # @return the full path to the iTMSTransporter executable
70
70
  def self.transporter_path
71
- itms_path = self.xcode_path + '../Applications/Application\ Loader.app/Contents/MacOS/itms/bin/iTMSTransporter'
72
- if File.file?(itms_path)
73
- return itms_path
74
- else
75
- return self.xcode_path + '../Applications/Application\ Loader.app/Contents/itms/bin/iTMSTransporter'
76
- end
71
+ File.join(self.xcode_path, '../Applications/Application\ Loader.app/Contents/MacOS/itms/bin/iTMSTransporter')
77
72
  end
78
73
 
79
74
  def self.fastlane_enabled?
@@ -9,7 +9,7 @@ module FastlaneCore
9
9
 
10
10
  return apps['summaries'].find { |v| v['bundleId'] == app_identifier }['adamId'].to_i
11
11
  rescue => ex
12
- error_occured(ex)
12
+ # Do nothing right now...
13
13
  end
14
14
  end
15
15
  end
@@ -1,3 +1,3 @@
1
1
  module FastlaneCore
2
- VERSION = "0.4.0"
2
+ VERSION = "0.4.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause