JOJ3/pkg/healthcheck/repolfs.go
张泊明518370910136 d19271c7ef
All checks were successful
submodules sync / sync (push) Successful in 1m5s
build / build (push) Successful in 3m8s
build / trigger-build-image (push) Successful in 10s
chore(healthcheck): tmp disable repoLFS
2025-06-28 09:30:35 -04:00

16 lines
341 B
Go

package healthcheck
func RepoLFS(rootDir string) error {
// cmd := exec.Command("git", "lfs", "fsck", "--pointers")
// cmd.Dir = rootDir
// output, err := cmd.CombinedOutput()
// if err != nil {
// return fmt.Errorf(
// "error running `git lfs fsck --pointers`: %w, output: %s",
// err,
// output,
// )
// }
return nil
}