fastlane-plugin-flutter_ios_integrate 0.1.2 → 0.1.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: a7817e0b9ab9d36302e981771751aae015ceed21c3a02f21f26c77a7d9653492
|
4
|
+
data.tar.gz: 81c5de952478212bb71bca8ad9573b831209175921fa2a333757c73beb8fc2b3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c581611af68f3f692db99fa8bedcd5a232b763a8f01f8a9b4680e798e963db1e71c859d15f9d322cd8f4f2a533a01d2d8ed1034213e81e946c976a2bd001d668
|
7
|
+
data.tar.gz: 1ffb267bfd8c02e3febdece63b8a159451e6f335b3732891bd46243683c7a202da499351e6d4ef93fc44eddc3509c14e682c1317dff48e1093e795d2912bdffc
|
@@ -12,11 +12,8 @@ module Fastlane
|
|
12
12
|
|
13
13
|
UI.message(" ===== Flutter 构建开始 ===== ")
|
14
14
|
|
15
|
-
#
|
16
|
-
Action.sh("
|
17
|
-
|
18
|
-
# 清空未提交的内容
|
19
|
-
Action.sh("git reset --hard")
|
15
|
+
# 清空未提交的内容 / 清空子模块为提交的内容
|
16
|
+
Action.sh("git reset --hard;git submodule foreach --recursive git reset --hard")
|
20
17
|
|
21
18
|
# 初始化 submodule
|
22
19
|
other_action.git_submodule_update(recursive: true, init: true)
|
@@ -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 模式命令
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-flutter_ios_integrate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Akring
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-02-
|
11
|
+
date: 2023-02-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|