pre-commit 464 B

123456789101112
  1. echo "提交之前检查";
  2. if grep -v '//' go.mod | grep -q -E 'git.cestong.com.cn/cecf/cecf-golib\s*=>' ; then
  3. echo "提交前go.mod应该避免使用本地依赖";
  4. echo "请修改后重新提交";
  5. exit 1
  6. fi
  7. if grep -v '//' go.mod | grep -q -E 'git.cestong.com.cn/cecf/hx-mobile-server-api\s*=>' ; then
  8. echo "提交前go.mod应该避免使用本地依赖";
  9. echo "请修改后重新提交";
  10. exit 1
  11. fi
  12. echo "检查完成,没有错误"