Merge "remove list_oslo_unreleased_changes.sh"

This commit is contained in:
Jenkins 2017-03-06 14:39:47 +00:00 committed by Gerrit Code Review
commit a682cebbc8
2 changed files with 0 additions and 35 deletions

View File

@ -226,23 +226,6 @@ is useful for examining the list of unreleased changes in a project
to decide if a release is warranted and to pick a version number.
list_oslo_unreleased_changes.sh
-------------------------------
Runs list_unreleased_changes.sh for all of the Oslo library
repositories.
::
./list_oslo_unreleased_changes.sh stable/kilo
is equivalent to:
::
./list_unreleased_changes.sh stable/kilo $(list-deliverables --repos --code-only --team Oslo)
list_stable_unreleased_changes.sh
---------------------------------

View File

@ -1,18 +0,0 @@
#!/bin/bash
#
# Convenience wrapper to show the unreleased changes in Oslo
# libraries, so we don't have to remember the incantation.
if [[ $# -ne 1 ]]; then
echo "Usage: $(basename $0) <branch>"
exit 1
fi
if [[ -z "$VIRTUAL_ENV" ]]; then
tox -e venv --notest
source ./.tox/venv/bin/activate
fi
repos="$(list-repos --code-only --team oslo | grep -v incubator)"
$(dirname $0)/list_unreleased_changes.sh $1 $repos