diff options
author | Erich Eckner <git@eckner.net> | 2017-07-06 09:36:14 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2017-07-06 09:36:14 +0200 |
commit | a1f8ee5de02cd75304ee26ad5bbb70ba08d33411 (patch) | |
tree | afa464b477e05039bb8ec8b34bcd11baf1bf014d /bin/sanity-check | |
parent | 44903dcc7a1f9c41f194a3c213a812e00f817466 (diff) | |
download | builder-a1f8ee5de02cd75304ee26ad5bbb70ba08d33411.tar.xz |
bin/sanity-check: cleanup
Diffstat (limited to 'bin/sanity-check')
-rwxr-xr-x | bin/sanity-check | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/sanity-check b/bin/sanity-check index 753f877..36ac0eb 100755 --- a/bin/sanity-check +++ b/bin/sanity-check @@ -64,7 +64,7 @@ while [ $# -gt 0 ]; do build-list) [ ${silence} -gt 0 ] || \ - >&2 printf 'sanity-check: checking build-list ...' + >&2 printf 'checking build-list ...' errors="$( grep -vn '^\S\+ [0-9a-f]\{40\} [0-9a-f]\{40\} \S\+$\|^break_loops$' "${work_dir}/build-list" @@ -119,7 +119,7 @@ while [ $# -gt 0 ]; do repos) [ ${silence} -gt 0 ] || \ - >&2 printf 'sanity-check: checking repos on master mirror ...' + >&2 printf 'checking repos on master mirror ...' repos='build-support community-staging community-testing community core extra gnome-unstable kde-unstable staging testing' @@ -295,7 +295,7 @@ while [ $# -gt 0 ]; do *) [ ${silence} -gt 1 ] || \ - >&2 printf 'sanity-check: unknown check "%s".\n' "$1" + >&2 printf 'unknown sanity-check "%s".\n' "$1" exit 2 ;; |