feat(install): 添加 Git Bash 多行提示修复功能并在卸载时询问移除

refactor(cli): 删除不再使用的 CLI 脚本和测试文件
fix(cli): 移除多行参数提示的输出
This commit is contained in:
catlog22
2026-01-18 11:53:49 +08:00
parent a34eeb63bf
commit 6a6d1885d8
7 changed files with 198 additions and 692 deletions

View File

@@ -454,7 +454,6 @@ function testParseAction(args: string[], options: CliExecOptions): void {
} else {
args.forEach((arg, i) => {
console.log(chalk.gray(` [${i}]: `) + chalk.green(`"${arg}"`));
// Show if multiline
if (arg.includes('\n')) {
console.log(chalk.yellow(` ↳ Contains ${arg.split('\n').length} lines`));
}