fastlane-plugin-flutter_ios_integrate 0.1.2 → 0.1.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: 6e47cb24491810f1e6c8dd61b37d80b0885b5a99da4631585c8c16ca41a77dc1
|
4
|
+
data.tar.gz: d834a766a8b98aa2146fd8851649b329e4e263d073bee7f31f3309bcba926454
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 771ca45843597dfaeca46a6877c86f3749bd9d626cfef2e8d7931a881490263c5e53fe2cf75ee8df97da87133be72e2acf2c95190497e57ab97290aef4f8a118
|
7
|
+
data.tar.gz: c91b2c1f27aaad4ea6ef1e983f64077903880a2df2a48d05d559c300fda583a2a25895989458ee4184d5421ed4ea472ff76b6b306e6530726edc32deaec934be
|
@@ -12,9 +12,6 @@ module Fastlane
|
|
12
12
|
|
13
13
|
UI.message(" ===== Flutter 构建开始 ===== ")
|
14
14
|
|
15
|
-
# 进入 submodule 目录
|
16
|
-
Action.sh("cd " + param_flutter_path)
|
17
|
-
|
18
15
|
# 清空未提交的内容
|
19
16
|
Action.sh("git reset --hard")
|
20
17
|
|
@@ -24,8 +21,11 @@ module Fastlane
|
|
24
21
|
# 从远端更新 submodule
|
25
22
|
Action.sh("git submodule update --remote")
|
26
23
|
|
24
|
+
# Flutter 编译命令
|
25
|
+
flutter_build_command = "cd " + param_flutter_path + ";flutter pub get"
|
26
|
+
|
27
27
|
# Pub Get
|
28
|
-
flutter_build_result = Action.sh(
|
28
|
+
flutter_build_result = Action.sh(flutter_build_command)
|
29
29
|
UI.message "#{flutter_build_result}"
|
30
30
|
|
31
31
|
# Debug 打包时替换 Flutter build 模式命令
|