fastlane_core 0.48.2 → 0.48.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/fastlane_core/project.rb +3 -3
- data/lib/fastlane_core/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d3f7a756d93705d812415ee2e6bced57f3010edb
|
4
|
+
data.tar.gz: d5a658c0eab0fb7e3198c75e569617671ebd558b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4744590185a0959bec598895bf316030989c3051a339875c01a21aa5847628773fde90ea1c2a4296de4561f3931fa43554211f12d9683986ad45aa8cbd9ec764
|
7
|
+
data.tar.gz: 1a37197da3eaa8cb8e788fb5b0c09c18c7ce433e36e8f73429e2a85323e988e7e5f9ddcaf380ae1fd5a0c37beb54e143c175f770cfd8f326ef8883a31b32502c
|
@@ -73,12 +73,12 @@ module FastlaneCore
|
|
73
73
|
# Gets rid of annoying plugin info warnings.
|
74
74
|
attr_accessor :xcodebuild_suppress_stderr
|
75
75
|
|
76
|
-
def initialize(options)
|
76
|
+
def initialize(options, xcodebuild_list_silent: false, xcodebuild_suppress_stderr: false)
|
77
77
|
self.options = options
|
78
78
|
self.path = File.expand_path(options[:workspace] || options[:project])
|
79
79
|
self.is_workspace = (options[:workspace].to_s.length > 0)
|
80
|
-
self.xcodebuild_list_silent =
|
81
|
-
self.xcodebuild_suppress_stderr =
|
80
|
+
self.xcodebuild_list_silent = xcodebuild_list_silent
|
81
|
+
self.xcodebuild_suppress_stderr = xcodebuild_suppress_stderr
|
82
82
|
|
83
83
|
if !path or !File.directory?(path)
|
84
84
|
UI.user_error!("Could not find project at path '#{path}'")
|