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 <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann 2017-01-23 13:52:27 -05:00
parent d818b491ce
commit 33264f91d9
2 changed files with 1 additions and 2 deletions

View File

@ -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)

View File

@ -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"