File tree Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 1
1
## 更新记录
2
2
3
+ ### fir-cli 1.4.3
4
+ - 修复 @build_cmd 中的输出显示, 使用 `$?` 获取 Process::Status
5
+
3
6
### fir-cli 1.4.2
4
7
- 修复手动提交 zip 格式符号表文件报错的 bug
5
8
82
85
83
86
### fir-cli 1.1.7
84
87
- 增加符号表上传指令, `fir mapping(alias m)`
85
- - 有一下三种方式上传符号表 (目前已经支持 dSYM 和 txt 两种格式的符号表文件上传)
88
+ - 有以下三种方式上传符号表 (目前已经支持 dSYM 和 txt 两种格式的符号表文件上传)
86
89
- 1. 指定 version 和 build 上传: `fir m <mapping file path> -P <bughd project id> -v <app version> -b <app build> -T <your api token>`
87
90
- 2. 在 publish 的时候自动上传: `fir p <app file path> -m <mapping file path> -P <bughd project id> -T <your api token>`
88
91
- 3. 在 build_ipa 的时候自动上传: `fir b <project dir> -P <bughd project id> -M -p -T <your api token>`
Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ Gem::Specification.new do |spec|
27
27
/_/ /___/_/ |_| \____/_____/___/
28
28
29
29
## 更新记录
30
- ### fir-cli 1.4.2
31
- - 修复手动提交 zip 格式符号表文件报错的 bug
30
+ ### fir-cli 1.4.3
31
+ - 修复 @build_cmd 中的输出显示, 使用 `$?` 获取 Process::Status
32
32
- 支持远程 git 项目打包编译, enjoy.
33
33
- `$ fir bi/ba <git ssh url> -B develop -c <changelog> -p`
34
34
- 详细更新记录, 请查看: https://github.com/FIRHQ/fir-cli/blob/master/CHANGELOG
Original file line number Diff line number Diff line change @@ -65,9 +65,9 @@ def logger_info_and_run_build_command
65
65
logger . info 'Building......'
66
66
logger_info_dividing_line
67
67
68
- status = system ( @build_cmd )
68
+ logger . info ` #{ @build_cmd } `
69
69
70
- unless status
70
+ if $? . to_i != 0
71
71
logger . error 'Build failed'
72
72
exit 1
73
73
end
Original file line number Diff line number Diff line change 1
1
# encoding: utf-8
2
2
3
3
module FIR
4
- VERSION = '1.4.2 '
4
+ VERSION = '1.4.3 '
5
5
end
You can’t perform that action at this time.
0 commit comments