fix(healthcheck/forbidden): remove unused option
This commit is contained in:
parent
64cbeef111
commit
f6012bdd5e
|
@ -39,14 +39,13 @@ var Version string
|
||||||
|
|
||||||
// Generally, err is used for runtime errors, and checkRes is used for the result of the checks.
|
// Generally, err is used for runtime errors, and checkRes is used for the result of the checks.
|
||||||
func main() {
|
func main() {
|
||||||
var gitWhitelist, metaFile []string
|
var metaFile []string
|
||||||
showVersion := flag.Bool("version", false, "print current version")
|
showVersion := flag.Bool("version", false, "print current version")
|
||||||
rootDir := flag.String("root", "", "")
|
rootDir := flag.String("root", "", "")
|
||||||
size := flag.Float64("repoSize", 2, "maximum size of the repo in MiB")
|
size := flag.Float64("repoSize", 2, "maximum size of the repo in MiB")
|
||||||
localList := flag.String("localList", "", "")
|
localList := flag.String("localList", "", "")
|
||||||
checkFileNameList := flag.String("checkFileNameList", "", "Comma-separated list of files to check.")
|
checkFileNameList := flag.String("checkFileNameList", "", "Comma-separated list of files to check.")
|
||||||
checkFileSumList := flag.String("checkFileSumList", "", "Comma-separated list of expected checksums.")
|
checkFileSumList := flag.String("checkFileSumList", "", "Comma-separated list of expected checksums.")
|
||||||
parseMultiValueFlag(&gitWhitelist, "whitelist", "")
|
|
||||||
parseMultiValueFlag(&metaFile, "meta", "")
|
parseMultiValueFlag(&metaFile, "meta", "")
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
if *showVersion {
|
if *showVersion {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user