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"