docker fix for source image

This commit is contained in:
Jonathan Shook
2021-12-22 22:15:23 -06:00
parent 1eb1405ad2
commit 3eb7a61824
3 changed files with 5 additions and 4 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 main > /tmp/gitlog_main
git log --oneline --decorate --max-count=1000 > /tmp/gitlog.txt
readarray lines < /tmp/gitlog_main
readarray lines < /tmp/gitlog.txt
for line in "${lines[@]}"
do
if [[ $line =~ \(tag:\ nosqlbench-[0-9]+\.[0-9]+\.[0-9]+\).+ ]]