mirror of
https://github.com/LCTT/TranslateProject.git
synced 2025-01-25 23:11:02 +08:00
11 lines
245 B
Bash
11 lines
245 B
Bash
#!/bin/bash
|
|
# PR 检查脚本
|
|
set -e
|
|
|
|
CHECK_DIR="$(dirname "$0")/check"
|
|
# sh "${CHECK_DIR}/check.sh" # 需要依赖,暂时禁用
|
|
sh "${CHECK_DIR}/info.sh"
|
|
sh "${CHECK_DIR}/collect.sh"
|
|
sh "${CHECK_DIR}/analyze.sh"
|
|
sh "${CHECK_DIR}/identify.sh"
|