Merge remote-tracking branch 'origin/master' into topic/dnthayer/ticket1963

This commit is contained in:
Daniel Thayer 2018-08-27 19:39:45 -05:00
commit bb313cb660
6 changed files with 117 additions and 10 deletions

View file

@ -66,7 +66,7 @@ function parse(version_string: string): VersionDescription
local commit = 0;
if ( |components| > 1 )
{
local commitpart = find_last(components[1], /\-[[:digit:]]+/);
local commitpart = find_last(cat("-", components[1]), /\-[[:digit:]]+/);
commit = ( |commitpart| > 0 ) ? to_count(sub_bytes(commitpart, 2, 999)) : 0;
}