summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2015-01-30 17:24:10 +0000
committerGerrit Code Review <review@openstack.org>2015-01-30 17:24:10 +0000
commite44da617b16030ef9c623ba48c85dd9e45204613 (patch)
tree3abd1665c6b887e1fc8acf391b1d007bbdb3bfd3
parent087a7c58b1f148a90959ea753756a85eacb9c098 (diff)
parent46fca0db74d71a1a7e0150bf8ee727778820d4bf (diff)
downloadoslo-incubator-e44da617b16030ef9c623ba48c85dd9e45204613.tar.gz
Merge "Always scan origin/master for release notes"
-rwxr-xr-xtools/list_unreleased_changes.sh8
1 files changed, 1 insertions, 7 deletions
diff --git a/tools/list_unreleased_changes.sh b/tools/list_unreleased_changes.sh
index 5567b9de..58807da7 100755
--- a/tools/list_unreleased_changes.sh
+++ b/tools/list_unreleased_changes.sh
@@ -41,17 +41,11 @@ for lib in $libs
do
echo
cd $repodir/$lib
- current_branch=$(git rev-parse --abbrev-ref HEAD)
- if [ "$current_branch" != "master" ]
- then
- echo "$lib repository is on $current_branch instead of master"
- continue
- fi
prev_tag=$(get_last_tag)
if [ -z "$prev_tag" ]
then
echo "$lib has not yet been released"
else
- $bindir/release_notes.py --changes-only $repodir/$lib $prev_tag
+ $bindir/release_notes.py --changes-only $repodir/$lib $prev_tag origin/master
fi
done