cocoapods-bb-bin 0.2.10.2 → 0.2.10.3
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: f4f51ce2893ada809b89311ad03da700570c3083ff606b0c6cd75be5aa7ce6e1
|
4
|
+
data.tar.gz: 86271e6db12464449ff97cdb5a68bdce3bf76fac993347ecaaa11ba5449f3a4d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5566ed63c60e4e2759a7627bbe190dc21b8beef163b2ca660807a64a0719006df0715347d28c115593dddc67b4e5ef25ea06ee6af09790375fcfaa86c73a260b
|
7
|
+
data.tar.gz: f47b7a8eb2daa9af8a53a6ff572a258322ee4c0364b2cad60a8de1a9f7ff2aeffdea371c2e8e36b966188f00f1c0f29de741710b4f036b32994cca535e9f5f82
|
@@ -17,7 +17,7 @@ module CBin
|
|
17
17
|
|
18
18
|
# 上传二进制 podspec
|
19
19
|
def push_binary_repo(binary_podsepc_json,isGenDylib=false)
|
20
|
-
if @sources.nil?
|
20
|
+
if @sources.nil? || @sources.empty?
|
21
21
|
customsource = binary_source
|
22
22
|
else
|
23
23
|
customsource = custom_business_source(@sources)
|
@@ -28,7 +28,7 @@ module CBin
|
|
28
28
|
|
29
29
|
# 上传源码podspec
|
30
30
|
def push_source_repo(source_podsepc_json)
|
31
|
-
if @sources.nil?
|
31
|
+
if @sources.nil? || @sources.empty?
|
32
32
|
customsource = code_source
|
33
33
|
else
|
34
34
|
customsource = custom_business_source(@sources)
|