fastlane 2.56.0.beta.20170904010003 → 2.56.0.beta.20170905010003
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/fastlane_core/lib/fastlane_core/helper.rb +2 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: be675133e059a8951b116bdbcb5bf5dcd3ff51b7
|
4
|
+
data.tar.gz: 5a80c306bb75691b09d4599bcfec14c87e7ae7dc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d2447ac38393bfb769e82a695c253dd886001b56bb11591752099fad29fdde0a87ede2131b6aec9e17f03f13785da52a4525dbd5d2e6ba862b1e33f9dd1a71a5
|
7
|
+
data.tar.gz: 1e02b74159d420a1dd7cb306fa14c1ff091af63708fc612f91b3db07ebb316fb844ac27a0666dbcff893e8d3d626d7a9a0f4b2cf340edab431d9ac26e21af313
|
@@ -141,11 +141,12 @@ module FastlaneCore
|
|
141
141
|
# @return The version of the currently used Xcode installation (e.g. "7.0")
|
142
142
|
def self.xcode_version
|
143
143
|
return nil unless self.is_mac?
|
144
|
-
return @xcode_version if @xcode_version
|
144
|
+
return @xcode_version if @xcode_version && @developer_dir == ENV['DEVELOPER_DIR']
|
145
145
|
|
146
146
|
begin
|
147
147
|
output = `DEVELOPER_DIR='' "#{xcode_path}/usr/bin/xcodebuild" -version`
|
148
148
|
@xcode_version = output.split("\n").first.split(' ')[1]
|
149
|
+
@developer_dir = ENV['DEVELOPER_DIR']
|
149
150
|
rescue => ex
|
150
151
|
UI.error(ex)
|
151
152
|
UI.user_error!("Error detecting currently used Xcode installation, please ensure that you have Xcode installed and set it using `sudo xcode-select -s [path]`")
|
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.56.0.beta.
|
4
|
+
version: 2.56.0.beta.20170905010003
|
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-09-
|
18
|
+
date: 2017-09-05 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: slack-notifier
|