cocoapods-meitu-bin 3.0.3 → 3.0.4
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: 4e9741581a964ad1099bc12fd3efc0c8ae28f6a1079b83de5c1dce623c9e6d07
|
|
4
|
+
data.tar.gz: 129d2de33fb4b16f7a1bcdb0fe06ce330048911b42d53e7b1513fc92a46bc0d3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ad81790b9c2beaa7563d94405ade6931c2b38eabc5f2576bd2b4a5e0be6fefb3b5d839cf38aac6dc1d5fd674a17ab619ef053d7747b491507dbabde982dbde15
|
|
7
|
+
data.tar.gz: 0d28b3a52bbab9cd14833ad8696b3fcc6e5a12d097a211bd09fe0a4e1845f72c55fb8fde1f7d9277df1bf2fc0d70f57e1cde7b02e160add804837a8545b0b075
|
|
@@ -326,12 +326,16 @@ module Pod
|
|
|
326
326
|
# shell-project 模式下同样遵循本地 :path 组件默认参与制作的策略。
|
|
327
327
|
show_build_tip("#{pod_target.pod_name} 是本地库,将参与二进制制作") if local_pod
|
|
328
328
|
# 外部源(如 git)
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
329
|
+
included_external_binary_names = PodUpdateConfig.external_source_binary
|
|
330
|
+
.map { |s| s[:name] || s['name'] }
|
|
331
|
+
.compact # 过滤nil值
|
|
332
|
+
.uniq # 去重
|
|
333
333
|
|
|
334
|
-
|
|
334
|
+
# 仅跳过“未被标记为可制作”的 external 组件。
|
|
335
|
+
# 被 resolver 标记进 external_source_binary 的 :git/:commit 组件,在 shell-project 模式下应参与制作。
|
|
336
|
+
if @sandbox.checkout_sources[pod_target.pod_name] &&
|
|
337
|
+
!included_external_binary_names.include?(pod_target.pod_name) &&
|
|
338
|
+
!pod_target.should_build?
|
|
335
339
|
external_pods << pod_target.pod_name
|
|
336
340
|
show_skip_tip("#{pod_target.pod_name} 以external方式引入")
|
|
337
341
|
next
|