From 452a71560ee78e2a8ab6cdf26947a7ec30e72272 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Bar=C4=87?= Date: Sun, 6 Jun 2021 23:58:36 +0200 Subject: [PATCH] src: verbose repoman MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maciej Barć --- src/check-commit | 4 ++-- src/repomanci | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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