Remove debugs re-stating the name of the check
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
b7e83d8269
commit
77de640cc8
4 changed files with 2 additions and 10 deletions
|
@ -1,8 +1,6 @@
|
|||
function sanity_deprecated_reporunner_images() {
|
||||
report debug "Check for deprecated repo-runner images"
|
||||
|
||||
[[ -f .repo-runner.yaml ]] || {
|
||||
report debug "No Repo-Runner config found"
|
||||
report debug "No Repo-Runner config found, skipping check"
|
||||
return 0
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
function sanity_has_readme() {
|
||||
report debug "Check for README.md existence"
|
||||
|
||||
[[ -f README.md ]] || {
|
||||
report error "No README.md found"
|
||||
return 1
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
function sanity_makefile_contains_autohook() {
|
||||
report debug "Check for auto-hook in Makefile"
|
||||
|
||||
[[ -f Makefile ]] || {
|
||||
report debug "No Makefile found"
|
||||
report debug "No Makefile found, skipping check"
|
||||
return 0
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
function sanity_year_placeholder_in_license() {
|
||||
report debug "Check for [year] placeholder in LICENSE file"
|
||||
|
||||
[[ -f LICENSE ]] || {
|
||||
report warn "No LICENSE file found"
|
||||
return 0
|
||||
|
|
Loading…
Reference in a new issue