On 3/13/17, Ross Berteig <r...@cheshireeng.com> wrote:
>
> proc uuid_from_commit {res var} {
>    upvar $var UUID
>    regexp {^New_Version: ([0-9a-f]{40})$} $res m UUID
> }
>
> That regexp is clearly seeking a UUID exactly 40 characters long.

I think the best solution here would be to change the RE to be
"([0-9a-f]{40,64})".  Does that fix the problem?
-- 
D. Richard Hipp
d...@sqlite.org
_______________________________________________
fossil-dev mailing list
fossil-dev@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/fossil-dev

Reply via email to