From ca8cfb3d487fa10c080649f92614c8f7e2e08705 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Mon, 18 Dec 2017 10:24:15 +0100 Subject: bin/db-update: add more verbose output in case of not-moving-any-package. --- bin/db-update | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'bin') diff --git a/bin/db-update b/bin/db-update index 84cb2e0..4d4fef1 100755 --- a/bin/db-update +++ b/bin/db-update @@ -609,12 +609,16 @@ if [ -s "${tmp_dir}/stabilize-packages" ]; then >&2 printf 'move packages from *testing/ to the stable repos ...' move_packages "${tmp_dir}/stabilize-packages" >&2 printf ' ok.\n' +else + >&2 printf 'Nothing to move from *testing to the stable repos.\n' fi if [ -s "${tmp_dir}/unstage-packages" ]; then >&2 printf 'move packages from *staging to *testing ...' move_packages "${tmp_dir}/unstage-packages" >&2 printf ' ok.\n' +else + >&2 printf 'Nothing to move from *staging to *testing.\n' fi clean_up_lock_file -- cgit v1.2.3-54-g00ecf