updated scripts for main branch name

This commit is contained in:
Jonathan Shook
2020-06-15 11:03:47 -05:00
parent ddc44bef64
commit d57835e436
3 changed files with 5 additions and 5 deletions

View File

@@ -2,9 +2,9 @@
set -e
#RELEASE_NOTES_FILE=${RELEASE_NOTES_FILE:?RELEASE_NOTES_FILE must be provided}
git log --oneline --decorate --max-count=1000 master > /tmp/gitlog_master
git log --oneline --decorate --max-count=1000 main > /tmp/gitlog_main
readarray lines < /tmp/gitlog_master
readarray lines < /tmp/gitlog_main
for line in "${lines[@]}"
do
if [[ $line =~ \(tag:\ nosqlbench-[0-9]+\.[0-9]+\.[0-9]+\).+ ]]