diff --git a/src/check-commit b/src/check-commit index d4a3ba2..93f96a1 100755 --- a/src/check-commit +++ b/src/check-commit @@ -49,7 +49,7 @@ fi printf "%s\n" \ ">>> Starting full test" \ "Running repoman -Idix" -repoman -Idix +repoman --verbose -Idix printf "%s\n" "Running pkgcheck scan" pkgcheck scan @@ -82,7 +82,7 @@ do printf "\n%s\n" \ "Directory $(pwd):" \ "Running repoman -Idix" - repoman -Idix || test_success=false + repoman --verbose -Idix || test_success=false cd - >/dev/null || return fi done diff --git a/src/repomanci b/src/repomanci index 9e41792..8d00556 100755 --- a/src/repomanci +++ b/src/repomanci @@ -51,7 +51,7 @@ ignored_dirs=( printf "%s\n" \ ">>> Starting full test" \ "Running repoman -Idix" -repoman -Idix +repoman --verbose -Idix printf "%s\n" ">>> Starting latest commit test" @@ -81,7 +81,7 @@ do printf "\n%s\n" \ "Checking ${commit_dir}" \ "Running repoman -Idix" - repoman -Idix || test_success="false" + repoman --verbose -Idix || test_success="false" cd - >/dev/null || return fi done