cocoapods-binary-matchup 0.0.15 → 0.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d82ba70bf3b96df6dbbe50edf16d8fec9c9272b6ccbde6c44a5daea0856fe32f
|
4
|
+
data.tar.gz: 7319e7a787a703cb65bcd1254e551d2915a77d425145ab1c2fb09cbb44c6d90e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3fe9edeed06572566c3da2b1e88614386dadbfbe23c511c2510896ffd5a267555f1173f319e85051368c7346586af30f7092de72409a6d8f19a52be01110e0e9
|
7
|
+
data.tar.gz: f8f40c9dc1161621d12326662160fd56639ebeae1fcb8fb82d4a035c070a2c284b256a341935dacb396b0afdcc332628439cf05ea0d4a2184111b997a998eb85
|
@@ -133,8 +133,13 @@ end
|
|
133
133
|
def xcodebuild(sandbox, target, sdk='macosx', deployment_target=nil, other_options=[])
|
134
134
|
args = %W(-project #{sandbox.project_path.realdirpath} -scheme #{target} -configuration #{CONFIGURATION} -sdk #{sdk} )
|
135
135
|
platform = PLATFORMS[sdk]
|
136
|
-
|
136
|
+
if !platform.nil?
|
137
|
+
args += Fourflusher::SimControl.new.destination(:oldest, platform, deployment_target) unless platform.nil?
|
138
|
+
elsif
|
139
|
+
args += ["IPHONEOS_DEPLOYMENT_TARGET=#{deployment_target}"]
|
140
|
+
end
|
137
141
|
args += other_options
|
142
|
+
Pod::UI.puts "📦 start compile project #{target} (#{args}) "
|
138
143
|
log = `xcodebuild #{args.join(" ")} 2>&1`
|
139
144
|
exit_code = $?.exitstatus # Process::Status
|
140
145
|
is_succeed = (exit_code == 0)
|