fastlane 2.70.0.beta.20171216010003 → 2.70.0.beta.20171217010003

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: 00dc2fed46fde4c8e0cf3edc068c8bf7fac94553
4
- data.tar.gz: d4f16bdbd7528426e1d36b0b0d9f70bd57084246
3
+ metadata.gz: e70fc25f458a107f2da53dd83d9defd296efa3e9
4
+ data.tar.gz: 3a653f3c0c685c667468c6e87739172ce654f65a
5
5
  SHA512:
6
- metadata.gz: b8df69b47c22713e0fa817a0fd1759941640c32e821bb5a85cede5bb88ebc16316baf5714d88327790fc82e78ca3d255b0126a40eb813478a41a870cd45a1419
7
- data.tar.gz: 47f6849d7379cd75a70cc1b4a35544fbc8b61ba04f3a9153892addb3a831d5900c70059fb4fbd7ea9b0639b572469bfa0a6686b442009fd720befbacf585ef21
6
+ metadata.gz: 2d346c552e2a3d0aa8a494b710a9d47c4bf871077057df1f7c662cd81d89444cdf68ca7fe01e2cdba59d69593b054d21770a51a284d59d5eb790f5741ce3ecf5
7
+ data.tar.gz: 98169759b017de052b8b154fcc25ed13e692e5797eb8a494caf94afd28470102af89a9f05d3e092cbc78e9ea53f992c3d2757e10e2d6a90015ca9f1536104cae
@@ -122,8 +122,6 @@ module Fastlane
122
122
  UI.important "After creating the Gemfile and Gemfile.lock, commit those files into version control"
123
123
  end
124
124
  UI.important "Get started using a Gemfile for fastlane https://docs.fastlane.tools/getting-started/ios/setup/#use-a-gemfile"
125
-
126
- sleep 2 # napping is life, otherwise the user might not see this message
127
125
  end
128
126
 
129
127
  # Returns an array of symbols for the available lanes for the Fastfile
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.70.0.beta.20171216010003'.freeze
2
+ VERSION = '2.70.0.beta.20171217010003'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  MINIMUM_XCODE_RELEASE = "7.0".freeze
5
5
  RUBOCOP_REQUIREMENT = '0.49.1'.freeze
@@ -89,8 +89,16 @@ module Match
89
89
  command << "-out #{tmpfile.shellescape}"
90
90
  command << "-a"
91
91
  command << "-d" unless encrypt
92
- command << "&> /dev/null" unless FastlaneCore::Globals.verbose? # to show show an error message is something goes wrong
93
- success = system(command.join(' '))
92
+ command << "&> /dev/null" unless FastlaneCore::Globals.verbose? # to show an error message if something goes wrong
93
+
94
+ _out, err, st = Open3.capture3(command.join(' '))
95
+ success = st.success?
96
+
97
+ # Ubuntu `openssl` does not fail on failure
98
+ # but at least outputs an error message
99
+ unless err.to_s.empty?
100
+ success = false
101
+ end
94
102
 
95
103
  UI.crash!("Error decrypting '#{path}'") unless success
96
104
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.70.0.beta.20171216010003
4
+ version: 2.70.0.beta.20171217010003
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
@@ -15,7 +15,7 @@ authors:
15
15
  autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
- date: 2017-12-16 00:00:00.000000000 Z
18
+ date: 2017-12-17 00:00:00.000000000 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: slack-notifier