From 10798a8c4bea1f8ce2d190c3a9c0770418f896d9 Mon Sep 17 00:00:00 2001 From: Boming Zhang Date: Sun, 13 Oct 2024 05:18:03 -0400 Subject: [PATCH] refactor(healthcheck)!: unify argument cases --- cmd/repo-health-checker/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/repo-health-checker/main.go b/cmd/repo-health-checker/main.go index 20415f9..5473a5c 100644 --- a/cmd/repo-health-checker/main.go +++ b/cmd/repo-health-checker/main.go @@ -43,7 +43,7 @@ func main() { showVersion := flag.Bool("version", false, "print current version") rootDir := flag.String("root", "", "") repo := flag.String("repo", "", "") - size := flag.Float64("reposize", 2, "size of the repo") + size := flag.Float64("repoSize", 2, "maximum size of the repo in MiB") localList := flag.String("localList", "", "") droneBranch := flag.String("droneBranch", "", "") checkFileNameList := flag.String("checkFileNameList", "", "Comma-separated list of files to check.")