cocoapods-bb-PodAssistant 0.3.13.0 → 0.3.13.1
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: 46a5ab3837f2bb1d0b91c18612247e025d917ecdbf038dea3ab680d6e6062cad
|
4
|
+
data.tar.gz: b3d3cae6b03b3d5e0b35d0f12debbd0825b9d847fa551eec13ecb10e9673783f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0c7d3cc42cc87b120bcdfaf3a82c1068533e63c858990da18d9067eb112a726dd75a06f507c78b74d4f5ce3c71f9b7bb179f54461b5cc0a36463e73270254c74
|
7
|
+
data.tar.gz: 86913772501ef244c637b67f9b86f1450d039681bc85a237339019ccd1e542b98fd65876af2df1c87c599121cecd09af08c5b6ba3102217d3483d0fda3ef2f8f
|
@@ -10,8 +10,8 @@ module BB
|
|
10
10
|
class SourceManager
|
11
11
|
def initialize(verify_stable_env=true, businessSpec=nil)
|
12
12
|
@env = BB::StableEnv.new(verify_stable_env, businessSpec)
|
13
|
-
@businessSpecName = businessSpec
|
14
13
|
@stableMgr = BB::StableManager.new(@env, verify_stable_env)
|
14
|
+
@businessSpecName = @env.business_stable # 从环境变量中获取值
|
15
15
|
end
|
16
16
|
|
17
17
|
def cache_path
|
@@ -95,7 +95,7 @@ module BB
|
|
95
95
|
if File.exist?(info_path)
|
96
96
|
return info_path
|
97
97
|
end
|
98
|
-
puts "
|
98
|
+
puts "无法找到工程Info.plist配置文件,工程目录:#{getProjectPath} @hm确认".red
|
99
99
|
return nil
|
100
100
|
# raise Informative, "#{path} File no exist, please check" unless File.exist?(path)
|
101
101
|
# return path
|