fastlane-plugin-flutter_ios_integrate 0.1.1 → 0.1.2
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: 586da22ece52689df58e1eac02cda4ce3a08da040319d6a9fb859b4dd2e76f56
|
4
|
+
data.tar.gz: 142a4ca188e4ec17a954b9a9d44812eed708c59825d0798d5607b8bef70e6d1b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d2b75f1d235f89b51256270f4dc3031a6e0a7c70167aa8abdc7b1c11d8fcd9d7cc522a11d947f1284c70616397605cf2d8fe63b1d54d096ac8ec16c953fab18
|
7
|
+
data.tar.gz: e2fbdf688a0c8ddcba0a0355c1d19a79901e4151900edc14b67a84b6a8dfdffbded7974892d57d23804e1ef3558e8d228b7814ce1ddbaf99603b8981cf50eb84
|
@@ -15,12 +15,12 @@ module Fastlane
|
|
15
15
|
# 进入 submodule 目录
|
16
16
|
Action.sh("cd " + param_flutter_path)
|
17
17
|
|
18
|
-
# 初始化 submodule
|
19
|
-
other_action.git_submodule_update(recursive: true, init: true)
|
20
|
-
|
21
18
|
# 清空未提交的内容
|
22
19
|
Action.sh("git reset --hard")
|
23
20
|
|
21
|
+
# 初始化 submodule
|
22
|
+
other_action.git_submodule_update(recursive: true, init: true)
|
23
|
+
|
24
24
|
# 从远端更新 submodule
|
25
25
|
Action.sh("git submodule update --remote")
|
26
26
|
|