Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit b3562ec

Browse files
committed
Fix bug in release notes builder script when current release isn't tagged
It was showing the changes from one release too many due to an off-by-one error.
1 parent a424ea1 commit b3562ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

builder/release_notes_builder.livecodescript

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1386,12 +1386,12 @@ private function GitGetRelevantTags pType
13861386

13871387
put 0 into tStart
13881388
repeat for each line tLine in tTags
1389-
add 1 to tStart
13901389
if tLine begins with sNumericVersion then
13911390
exit repeat
13921391
end if
1392+
add 1 to tStart
13931393
end repeat
1394-
put line (tStart - 1) to -1 of tTags into tTags
1394+
put line tStart to -1 of tTags into tTags
13951395

13961396
repeat for each line tLine in tTags
13971397
if not (tLine begins with sNumericVersion) then

0 commit comments

Comments
 (0)