pindo 4.9.2 → 4.9.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: c275ab1c2a8f75bf7494dfafb6e833902a0bc1cebd5a5bada1702ed588137b62
4
- data.tar.gz: 3ea1f71113a7410baaff968fa0d8e18132274fe229e267fc6420fa9391dd2dde
3
+ metadata.gz: 0abd0eb9f20e688da8b9af08a82ea9d8dcb23e3933417ee9500a63542396d20c
4
+ data.tar.gz: a35604b42071177e27fa45ba3da6231b32d268ed2f1a3d381fbe3b3b8401a1bc
5
5
  SHA512:
6
- metadata.gz: 47c77e0dcf5b3e82dc654d0d82f6be21a19b8dfc29f106868561cba19599de29bf86f4df7f43a4d621c43cf6ed46e0e320f2043d0851172a9ef42e4d21f50945
7
- data.tar.gz: 87dc84f551d923849b54d5f0214c88a2cbcb9b638255715e6314f2e470efc3998e0aef417246932984d6e176fddca87a002d8d69fae218646c9fedb660560584
6
+ metadata.gz: fade81f54a82cbbc4be6258703b706c19b13fabfb0fe23ff2436202d891e1796765c538482da925e96239ed24fde08a64d87c2f918db5a46393f69a9e2094898
7
+ data.tar.gz: 194d66f52e3894e8bd1749420ee549e2977b11536c4702581cfc295d5afa9f88cdce4fe73a7af9a50f52a4500e18eb2145ec4f143a084a4f26c2cb601c544f58
@@ -590,7 +590,7 @@ module Pindo
590
590
  return new_tag
591
591
  end
592
592
 
593
- if is_tag_at_head?(project_dir: project_dir, tag_name: latest_tag)
593
+ if is_tag_at_head?(git_root_dir: project_dir, tag_name: latest_tag)
594
594
  return latest_tag
595
595
  end
596
596
 
@@ -627,17 +627,17 @@ module Pindo
627
627
  end
628
628
 
629
629
  # 检查tag是否在指定的commit上
630
- # @param project_dir [String] 项目目录路径
630
+ # @param git_root_dir [String] 项目目录路径
631
631
  # @param tag_name [String] 标签名称
632
632
  # @return [Boolean] 如果tag在当前HEAD上返回true,否则返回false
633
- def is_tag_at_head?(project_dir:nil, tag_name:nil)
634
- return false if project_dir.nil? || tag_name.nil?
633
+ def is_tag_at_head?(git_root_dir:nil, tag_name:nil)
634
+ return false if git_root_dir.nil? || tag_name.nil?
635
635
 
636
636
  begin
637
637
  # 获取tag的commit hash
638
- tag_commit = git!(%W(-C #{project_dir} rev-parse #{tag_name})).strip
638
+ tag_commit = git!(%W(-C #{git_root_dir} rev-parse #{tag_name})).strip
639
639
  # 获取HEAD的commit hash
640
- head_commit = git!(%W(-C #{project_dir} rev-parse HEAD)).strip
640
+ head_commit = git!(%W(-C #{git_root_dir} rev-parse HEAD)).strip
641
641
 
642
642
  # 比较两个commit hash是否相同
643
643
  tag_commit == head_commit
@@ -180,7 +180,7 @@ module Pindo
180
180
  else
181
181
  Funlog.instance.fancyinfo_error("pgyer token文件不存在!")
182
182
  end
183
- puts "token: #{@token}"
183
+ # puts "token: #{@token}"
184
184
  return @token
185
185
  end
186
186
 
@@ -3,6 +3,7 @@ require 'xcodeproj'
3
3
  require 'find'
4
4
  require 'fileutils'
5
5
  require 'pindo/base/executable'
6
+ require 'pindo/module/build/buildhelper'
6
7
 
7
8
  module Pindo
8
9
  class Command
@@ -11,23 +12,50 @@ module Pindo
11
12
 
12
13
  include Appselect
13
14
 
15
+ # 命令的简要说明 - 自动编译并发布工程
14
16
  self.summary = '自动编译工程,并支持上传ipa到测试网站'
15
17
 
18
+ # 命令的详细说明,包含用法示例
16
19
  self.description = <<-DESC
17
- 自动编译工程,并支持上传ipa到测试网站. 在工程目录下运行: pindo dev autobuild
20
+ 自动编译工程并支持上传到测试平台。
21
+
22
+ 支持功能:
23
+
24
+ * 自动编译工程
25
+
26
+ * 上传到测试平台
27
+
28
+ * 发送测试通知
29
+
30
+ * 支持多种编译模式
31
+
32
+ 使用示例:
33
+
34
+ $ pindo dev autobuild # 使用开发证书编译
35
+
36
+ $ pindo dev autobuild --deploy # 使用发布bundle id
37
+
38
+ $ pindo dev autobuild --adhoc # 使用adhoc证书编译
39
+
40
+ $ pindo dev autobuild --proj=myapp # 指定项目名称
41
+
42
+ $ pindo dev autobuild --upload # 上传编译包
43
+
44
+ $ pindo dev autobuild --send # 发送测试通知
18
45
  DESC
19
46
 
47
+ # 命令的参数列表
20
48
  self.arguments = [
21
-
22
49
  ]
23
50
 
51
+ # 命令的选项列表
24
52
  def self.options
25
53
  [
26
- ['--deploy', '默认用开发的bundle id,用法:pindo dev autobuild --deploy'],
27
- ['--adhoc', '默认用dev证书,使用--adhoc设置使用adhoc证书编译, 用法:pindo dev autobuild --adhoc'],
28
- ['--proj', '指定上传到pgyer对应的项目名称(大小写空格忽略),用法:pindo dev autobuild --proj=aichatv4'],
29
- ['--upload', '是否上传编译后的ipa, 用法:pindo dev autobuild --upload'],
30
- ['--send', '上传到之后是否发送测试信息,用法:pindo dev autobuild --send'],
54
+ ['--deploy', '默认用开发的bundle id,用法:pindo dev autobuild --deploy'],
55
+ ['--adhoc', '默认用dev证书,使用--adhoc设置使用adhoc证书编译'],
56
+ ['--proj', '指定上传到pgyer对应的项目名称(大小写空格忽略)'],
57
+ ['--upload', '是否上传编译后的ipa'],
58
+ ['--send', '上传到之后是否发送测试信息'],
31
59
  ].concat(super)
32
60
  end
33
61
 
@@ -54,114 +82,34 @@ module Pindo
54
82
 
55
83
  def run
56
84
 
57
- mainapp_bundleid= nil
58
- if @args_deploy_flag
59
- mainapp_bundleid = get_selected_deploy_bundleid()
60
- else
61
- mainapp_bundleid = get_selected_dev_bundleid()
62
- end
85
+ pindo_unity_project_dir = Dir.pwd
86
+ build_helper = Pindo::BuildHelper.share_instance
87
+ pindo_unity_project_dir = Dir.pwd
63
88
 
64
- app_info_obj = nil
65
- if @args_upload_flag
66
- proj_name = @args_proj_name
67
- app_info_obj = PgyerHelper.share_instace.prepare_upload(working_directory:Dir.pwd, proj_name:proj_name)
68
- end
69
89
 
70
- args_temp = []
71
- args_temp << mainapp_bundleid
72
-
73
-
74
- Pindo::Command::Deploy::Pullconfig::run(args_temp)
75
-
76
- project_dir = Dir.pwd
77
- Dir.chdir(project_dir)
78
- config_json_file = File.join(project_dir,"config.json")
79
- Debug::modify_cert_with_project(project_dir:project_dir, config_file:config_json_file)
80
-
81
- if File.exist?(File.join(project_dir, "Podfile"))
82
-
83
- args_temp = []
84
- args_temp << config_json_file
85
- Pindo::Command::Lib::Update::run([])
86
-
87
- begin
88
- if File.exist?(File.join(project_dir, "Podfile.lock"))
89
- FileUtils.rm_rf(File.join(project_dir, "Podfile.lock"))
90
- end
91
- if File.exist?(File.join(project_dir,"Pods"))
92
- FileUtils.rm_rf(File.join(project_dir, "Pods"))
93
- end
94
- puts "正在执行pod deintegrate..."
95
- system 'pod deintegrate'
96
- puts "正在执行pod install..."
97
- system 'pod install'
98
- rescue => error
99
- puts(error.to_s)
100
- raise Informative, "pod install失败!!先pod install 完成后成编译 !"
101
- end
102
-
103
- Dir.chdir(project_dir)
104
- pod_lock_file = File.join(project_dir, "Podfile.lock")
105
- if !File.exist?(pod_lock_file)
106
- raise Informative, "pod install失败!!先pod install 完成后成编译 !"
107
- end
108
-
109
- end
110
-
90
+ build_helper = Pindo::BuildHelper.share_instance
91
+ project_type = build_helper.project_type(pindo_unity_project_dir)
111
92
 
112
93
  args_temp = []
113
- if @args_adhoc_flag
114
- args_temp << "--adhoc"
94
+ args_temp << "--proj=#{@args_proj_name}" if @args_proj_name
95
+ args_temp << "--upload" if @args_upload_flag
96
+ args_temp << "--send" if @args_send_flag
97
+ args_temp << "--adhoc" if @args_adhoc_flag
98
+ args_temp << "--deploy" if @args_deploy_flag
99
+
100
+ case project_type
101
+ when :ios
102
+ puts "iOS工程, 请使用 pindo ios autobuild"
103
+ Pindo::Command::Ios::Autobuild::run(args_temp)
104
+ when :android
105
+ puts "Android工程, 请使用 pindo android autobuild"
106
+ when :unity
107
+ raise Informative, "Unity工程, 请使用 pindo unity ipa 或者pindo unity apk"
115
108
  else
116
- args_temp << "--dev"
117
- end
118
-
119
- project_fullname = Dir.glob(File.join(project_dir, "/*.xcodeproj")).max_by {|f| File.mtime(f)}
120
- if !project_fullname.nil?
121
- project_obj = Xcodeproj::Project.open(project_fullname)
122
- project_build_platform = project_obj.root_object.build_configuration_list.get_setting("SDKROOT")["Release"]
123
- if !project_build_platform.nil? && project_build_platform.eql?("macosx")
124
- @args_macos_flag = true
125
- end
126
- end
127
-
128
- if @args_macos_flag
129
- args_temp << "--macos"
109
+ raise Informative, "当前目录不是工程目录,不能编译"
130
110
  end
131
111
 
132
- Pindo::Command::Deploy::Cert::run(args_temp)
133
-
134
- Dir.chdir(project_dir)
135
- Pindo::Command::Deploy::Build::run(args_temp)
136
-
137
-
138
- pindo_new_project_dir = Dir.pwd
139
- build_path = File.join(pindo_new_project_dir, "build", "*.{ipa,app}")
140
- ipa_file_upload = Dir.glob(build_path).max_by {|f| File.mtime(f)}
141
-
142
- if !ipa_file_upload.nil? && !app_info_obj.nil?
143
- description = nil
144
- if File.exist?(File.join(pindo_new_project_dir, ".release_info"))
145
- description = File.read(File.join(pindo_new_project_dir, ".release_info"))
146
- else
147
- if File.exist?(File.join(pindo_new_project_dir, ".git"))
148
- description = git!(%W(-C #{pindo_new_project_dir} show -s --format=%h::%s)).strip
149
- end
150
- end
151
- result_data = PgyerHelper.share_instace.start_upload(app_info_obj:app_info_obj, ipa_file_upload:ipa_file_upload, description:description)
152
- if !result_data.nil? && !result_data["data"].nil? && !result_data["data"]["id"].nil?
153
- msg_data = PgyerHelper.share_instace.make_msg_data(app_info_obj:app_info_obj, app_version_info_obj:result_data["data"])
154
- PgyerHelper.share_instace.print_app_version_info(msg_data:msg_data)
155
- if @args_send_flag
156
- PgyerHelper.share_instace.send_apptest_wechat_msg(msg_data:msg_data)
157
- end
158
- end
159
- end
160
-
161
- system "open #{project_dir}"
162
-
163
112
  end
164
-
165
113
  end
166
114
  end
167
115
  end
@@ -3,24 +3,43 @@ require 'fileutils'
3
3
  require 'json'
4
4
  require 'xcodeproj'
5
5
  require 'gym'
6
+ require 'pindo/module/build/buildhelper'
6
7
 
7
8
  module Pindo
8
9
  class Command
9
10
  class Dev < Command
10
11
  class Build < Dev
11
12
 
12
-
13
+ # 命令的简要说明 - 编译工程并上传测试
13
14
  self.summary = '编译工程,并支持上传ipa到测试网站'
14
15
 
16
+ # 命令的详细说明,包含用法示例
15
17
  self.description = <<-DESC
16
- 编译工程. 用法:在工程目录下执行 pindo dev build --upload
18
+ 编译工程并支持上传到测试平台。
19
+
20
+ 支持功能:
21
+
22
+ * 编译工程
23
+
24
+ * 上传到测试平台
25
+
26
+ * 发送测试通知
27
+
28
+ 使用示例:
29
+
30
+ $ pindo dev build # 仅编译
31
+
32
+ $ pindo dev build --upload # 编译并上传
33
+
34
+ $ pindo dev build --send # 编译并发送通知
35
+
36
+ $ pindo dev build --proj=myapp # 指定项目名称
17
37
  DESC
18
38
 
39
+ # 命令的参数列表
19
40
  self.arguments = [
20
-
21
41
  ]
22
42
 
23
-
24
43
  def self.options
25
44
  [
26
45
  ['--proj', '指定上传到pgyer对应的项目名称(大小写空格忽略),用法:pindo dev build --proj=aichatv4'],
@@ -46,51 +65,29 @@ module Pindo
46
65
 
47
66
  def run
48
67
 
49
-
50
- app_info_obj = nil
51
- if @args_upload_flag
52
- proj_name = @args_proj_name
53
- app_info_obj = PgyerHelper.share_instace.prepare_upload(working_directory:Dir.pwd, proj_name:proj_name)
54
- end
68
+ pindo_unity_project_dir = Dir.pwd
55
69
 
70
+ build_helper = Pindo::BuildHelper.share_instance
71
+ project_type = build_helper.project_type(pindo_unity_project_dir)
56
72
 
57
73
  args_temp = []
58
- Pindo::Command::Deploy::Build::run(args_temp)
59
-
60
-
61
- pindo_new_project_dir = Dir.pwd
62
- build_path = File.join(pindo_new_project_dir, "build", "*.{ipa,app,apk}")
63
- ipa_file_upload = Dir.glob(build_path).max_by {|f| File.mtime(f)}
64
-
65
- if !ipa_file_upload.nil? && !app_info_obj.nil?
66
-
67
- description = nil
68
- if File.exist?(File.join(pindo_new_project_dir, ".release_info"))
69
- description = File.read(File.join(pindo_new_project_dir, ".release_info"))
70
- else
71
- if File.exist?(File.join(pindo_new_project_dir, ".git"))
72
- description = git!(%W(-C #{pindo_new_project_dir} show -s --format=%h::%s)).strip
73
- unless !description.nil? && description.length > 10
74
- description = nil
75
- end
76
- end
77
- end
78
-
79
- result_data = PgyerHelper.share_instace.start_upload(app_info_obj:app_info_obj, ipa_file_upload:ipa_file_upload, description:description)
80
- if !result_data.nil? && !result_data["data"].nil? && !result_data["data"]["id"].nil?
81
- msg_data = PgyerHelper.share_instace.make_msg_data(app_info_obj:app_info_obj, app_version_info_obj:result_data["data"])
82
-
83
- PgyerHelper.share_instace.print_app_version_info(msg_data:msg_data)
84
- if @args_send_flag
85
- PgyerHelper.share_instace.send_apptest_wechat_msg(msg_data:msg_data)
86
- end
87
- end
74
+ args_temp << "--proj=#{@args_proj_name}" if @args_proj_name
75
+ args_temp << "--upload" if @args_upload_flag
76
+ args_temp << "--send" if @args_send_flag
77
+ case project_type
78
+ when :ios
79
+ puts "iOS 工程, 请使用 pindo ios build"
80
+ Pindo::Command::Ios::Build::run(args_temp)
81
+ when :android
82
+ puts "Android 工程, 请使用 pindo android build"
83
+ Pindo::Command::Android::Build::run(args_temp)
84
+ when :unity
85
+ raise Informative, "Unity 工程, 请使用 pindo unity ipa 或者pindo unity apk"
86
+ else
87
+ raise Informative, "当前目录不是工程目录,不能编译"
88
88
  end
89
89
 
90
-
91
90
  end
92
-
93
-
94
91
  end
95
92
  end
96
93
  end
@@ -9,8 +9,10 @@ module Pindo
9
9
 
10
10
  include XcodeCertHelper
11
11
 
12
+ # 命令的简要说明 - 更新证书并设置工程
12
13
  self.summary = '更新证书并使用新证书设置工程'
13
14
 
15
+ # 命令的详细说明,包含用法示例
14
16
  self.description = <<-DESC
15
17
  更新证书并使用新证书设置工程。
16
18
 
@@ -30,15 +32,17 @@ module Pindo
30
32
 
31
33
  $ pindo dev debug --deploy # 使用发布bundle id
32
34
 
33
- $ pindo dev debug --adhoc # 使用adhoc证书
35
+ $ pindo dev debug --adhoc # 使用adhoc证书
34
36
 
35
- $ pindo dev debug --macos # 使用macOS证书
37
+ $ pindo dev debug --macos # 使用macOS证书
36
38
  DESC
37
39
 
40
+ # 命令的参数列表
38
41
  self.arguments = [
39
42
  # 暂无参数
40
43
  ]
41
44
 
45
+ # 命令的选项列表
42
46
  def self.options
43
47
  [
44
48
  ['--deploy', '使用发布bundle id(默认使用开发bundle id)'],
@@ -149,10 +153,8 @@ module Pindo
149
153
 
150
154
  end
151
155
 
152
-
153
156
  end
154
157
 
155
-
156
158
  end
157
159
  end
158
160
  end
@@ -0,0 +1,128 @@
1
+ require 'highline/import'
2
+ require 'fileutils'
3
+
4
+ module Pindo
5
+ class Command
6
+ class Dev < Command
7
+ class Repoinit < Dev
8
+
9
+ include Pindo::Githelper
10
+
11
+ # 命令的简要说明 - 初始化git仓库配置
12
+ self.summary = '初始化git仓库中git cliff的配置'
13
+
14
+ # 命令的详细说明,包含用法示例
15
+ self.description = <<-DESC
16
+ 初始化git仓库中git cliff的配置。
17
+
18
+ 支持功能:
19
+
20
+ * 初始化git cliff配置
21
+
22
+ * 生成配置文件
23
+
24
+ 使用示例:
25
+
26
+ $ pindo dev repoinit # 初始化配置
27
+ DESC
28
+
29
+ # 命令的参数列表
30
+ self.arguments = []
31
+
32
+ def self.options
33
+ [
34
+ ].concat(super)
35
+ end
36
+
37
+ def initialize(argv)
38
+ @mode = argv.option('mode') || 'minor'
39
+ @force_retag = argv.flag?('retag', false)
40
+
41
+ unless ['major', 'minor', 'patch'].include?(@mode)
42
+ raise Informative, "mode参数必须是 major, minor 或 patch"
43
+ end
44
+
45
+ super
46
+ @additional_args = argv.remainder!
47
+ end
48
+
49
+ def write_gitignore(project_dir)
50
+ gitignore_path = File.join(project_dir, '.gitignore')
51
+ gitignore_content = <<~GITIGNORE
52
+ # Build logs
53
+ build_ios.log
54
+ CHANGELOG.md
55
+
56
+ # Platform specific directories
57
+ /GoodPlatform/iOS/*
58
+ /GoodPlatform/Android/*
59
+ /GoodPlatform/MacOS/*
60
+ /GoodPlatform/BaseiOS/Unity/*
61
+ /GoodPlatform/BaseiOS/Pods/
62
+ /GoodPlatform/BaseiOS/Podfile.lock
63
+ /GoodPlatform/BaseAndroid/Unity/*
64
+ /GoodPlatform/BaseMac/Unity/*
65
+ GITIGNORE
66
+
67
+ # Append to existing .gitignore or create new one
68
+ File.open(gitignore_path, 'a') do |f|
69
+ f.puts("\n# Added by Pindo")
70
+ f.puts(gitignore_content)
71
+ end
72
+ end
73
+
74
+ def run
75
+
76
+ clone_pindo_common_config_repo(force_delete:false)
77
+ pindo_common_dir = pindo_single_config.pindo_common_configdir
78
+
79
+ current_dir = Dir.pwd
80
+ puts
81
+ Funlog.instance.fancyinfo_start("添加仓库日志变更配置 git-cliff")
82
+ if is_git_directory?(local_repo_dir: current_dir)
83
+ current_git_root_path = git_root_directory(local_repo_dir: current_dir)
84
+ if File.exist?(File.join(pindo_common_dir, 'cliff.toml'))
85
+ FileUtils.cp_r(File.join(pindo_common_dir, 'cliff.toml'), File.join(current_git_root_path, 'cliff.toml'))
86
+ end
87
+ Funlog.instance.fancyinfo_update("仓库添加cliff配置")
88
+ write_gitignore(current_git_root_path)
89
+ Funlog.instance.fancyinfo_update("仓库添加.gitignore")
90
+ Dir.chdir(current_dir)
91
+ current_branch = git!(%W(-C #{current_dir} rev-parse --abbrev-ref HEAD)).strip
92
+ git!(%W(-C #{current_dir} add cliff.toml))
93
+ git!(%W(-C #{current_dir} add .gitignore))
94
+ git!(%W(-C #{current_dir} commit -m "更新cliff配置"))
95
+ git!(%W(-C #{current_dir} push origin #{current_branch}))
96
+
97
+ else
98
+ Funlog.instance.fancyinfo_error("当前目录不是git仓库,请在git仓库根目录下执行此命令")
99
+ raise Informative, "当前目录不是git仓库,请在git仓库根目录下执行此命令"
100
+ end
101
+ Funlog.instance.fancyinfo_success("仓库配置完成!")
102
+
103
+
104
+
105
+ puts "\n检查git-cliff命令是否安装"
106
+ # 请检查git-cliff命令是否安装
107
+ begin
108
+ if !system('git-cliff --version')
109
+ # /bin/bash -c "$(curl -fsSL https://gitee.com/goodtools/env/raw/master/gitcliff_install.sh)"
110
+ #安装git-cliff
111
+ system('bash -c "$(curl -fsSL https://gitee.com/goodtools/env/raw/master/gitcliff_install.sh)"')
112
+ else
113
+ puts "git-cliff已安装"
114
+ end
115
+ rescue
116
+ raise Informative, "安装git-cliff出现错误"
117
+ end
118
+
119
+
120
+ end
121
+
122
+
123
+
124
+
125
+ end
126
+ end
127
+ end
128
+ end
@@ -5,23 +5,36 @@ module Pindo
5
5
  class Command
6
6
  class Dev < Command
7
7
  class Tag < Dev
8
+ # 命令的简要说明 - 发布代码并添加tag
8
9
  self.summary = '发布代码,添加tag,添加发布信息,并合并到发布分支'
10
+
11
+ # 命令的详细说明,包含用法示例
9
12
  self.description = <<-DESC
10
- 发布代码,添加tag,添加发布信息,并合并到发布分支。
11
-
12
- 支持功能:
13
- * 处理未提交的文件
14
- * 添加版本tag
15
- * 合并到发布分支
16
-
17
- 使用示例:
18
- $ pindo dev pub # 使用minor模式创建tag
19
- $ pindo dev pub --mode=major # 使用major模式创建tag
20
- $ pindo dev pub --mode=patch # 使用patch模式创建tag
21
- $ pindo dev pub --retag # 强制重新打tag
13
+ 发布代码,添加tag,添加发布信息,并合并到发布分支。
14
+
15
+ 支持功能:
16
+
17
+ * 处理未提交的文件
18
+
19
+ * 添加版本tag
20
+
21
+ * 合并到发布分支
22
+
23
+ 使用示例:
24
+
25
+ $ pindo dev tag # 使用minor模式创建tag
26
+
27
+ $ pindo dev tag --mode=major # 使用major模式创建tag
28
+
29
+ $ pindo dev tag --mode=patch # 使用patch模式创建tag
30
+
31
+ $ pindo dev tag --retag # 强制重新打tag
22
32
  DESC
33
+
34
+ # 命令的参数列表
23
35
  self.arguments = []
24
36
 
37
+ # 命令的选项列表
25
38
  def self.options
26
39
  [
27
40
  ['--mode', '指定版本号增加模式(major/minor/patch),默认minor'],
@@ -96,7 +109,7 @@ module Pindo
96
109
  return
97
110
  end
98
111
 
99
- if is_tag_at_head?(project_dir: project_dir, tag_name: latest_tag)
112
+ if is_tag_at_head?(git_root_dir: project_dir, tag_name: latest_tag)
100
113
  Funlog.instance.fancyinfo_success("当前commit已有tag: #{latest_tag},无需重新打tag")
101
114
  Funlog.instance.fancyinfo_success("仓库路径: #{project_dir}")
102
115
  return
@@ -3,10 +3,9 @@
3
3
 
4
4
  require 'pindo/command/dev/tag'
5
5
  require 'pindo/command/dev/debug'
6
- require 'pindo/command/dev/autoresign'
7
6
  require 'pindo/command/dev/autobuild'
8
7
  require 'pindo/command/dev/build'
9
- require 'pindo/command/dev/applovin'
8
+ require 'pindo/command/dev/repoinit'
10
9
 
11
10
 
12
11
  module Pindo