From 33264f91d9a891bdcc14f0a93e85ee04c4724408 Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Mon, 23 Jan 2017 13:52:27 -0500 Subject: [PATCH] do not use title to show when a repo is being cloned The extra info just clutters up the report output. Change-Id: I4ba29f240ac625a299ff538931ef394d31bd43b5 Signed-off-by: Doug Hellmann --- functions | 1 - list_unreleased_changes.sh | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/functions b/functions index ae5259a..6f34c76 100644 --- a/functions +++ b/functions @@ -107,7 +107,6 @@ function clone_repo { if [ -z "$branch" ]; then branch="master" fi - title "Cloning $repo" output=$({ zuul-cloner --branch "$branch" git://git.openstack.org $repo \ && (cd $repo && git review -s && git remote -v update \ && git fetch -v --tags); } 2>&1) diff --git a/list_unreleased_changes.sh b/list_unreleased_changes.sh index 3885a29..3895da8 100755 --- a/list_unreleased_changes.sh +++ b/list_unreleased_changes.sh @@ -38,12 +38,12 @@ export PAGER= setup_temp_space 'list-unreleased' function list_changes { + title "Unreleased changes in $repo" clone_repo $repo $branch if [[ $? -ne 0 ]]; then return 1 fi cd $repo - title "Unreleased changes in $repo" prev_tag=$(get_last_tag) if [ -z "$prev_tag" ]; then echo "$repo has not yet been released"