fix: use camelCase for the cmdline switch generated
All checks were successful
build / build (pull_request) Successful in 3m3s
build / build (push) Successful in 3m9s
build / trigger-build-image (pull_request) Has been skipped
build / trigger-build-image (push) Has been skipped

This commit is contained in:
王韵晨520370910012 2026-04-07 16:53:37 -07:00
parent 926f786d83
commit 51392cc156
GPG Key ID: F28AB6AE26FFED6F
2 changed files with 2 additions and 2 deletions

View File

@ -131,7 +131,7 @@ def get_health_check_args(repo_conf: repo.Config) -> List[str]:
]
if repo_conf.health_check.whitelisted_chars:
args.append(
f"-whitelisted-chars={','.join(repo_conf.health_check.whitelisted_chars)}"
f"-whitelistedChars={','.join(repo_conf.health_check.whitelisted_chars)}"
)
args.extend(
[

View File

@ -59,7 +59,7 @@
"/usr/local/bin/repo-health-checker",
"-root=.",
"-repoSize=10.0",
"-whitelisted-chars=你,好,",
"-whitelistedChars=你,好,",
"-checkFileSumList=",
"-checkFileNameList="
]