fix(cmd/joj3): teapot conf
All checks were successful
build / build (push) Successful in 1m4s
build / trigger-build-image (push) Successful in 12s

This commit is contained in:
张泊明518370910136 2024-10-12 01:30:06 -04:00
parent 2d4c7c30a3
commit ad0918bbde
GPG Key ID: D47306D7062CDA9D

View File

@ -179,6 +179,14 @@ func parseConfFile(path string) (conf Conf, err error) {
}, },
} }
} }
conf.Teapot.GradingRepoName = conf.GradingRepoName
conf.Teapot.ScoreboardPath = conf.ScoreboardPath
conf.Teapot.FailedTablePath = conf.FailedTablePath
if conf.SkipTeapot {
conf.Teapot.SkipScoreboard = true
conf.Teapot.SkipFailedTable = true
conf.Teapot.SkipIssue = true
}
} }
return return
} }