run: fix depot tool regex to support '.' versions

Fix #2720
This commit is contained in:
Emery Hemingway 2018-03-16 13:44:06 +01:00 committed by Christian Helmuth
parent 9204a8c260
commit 1ca2b6fab3

View File

@ -46,7 +46,7 @@ proc _depot_archive_path_pattern { } {
# Pattern to parse an versioned archive path into <user>, <type>, <name>, <version>
#
proc _depot_archive_versioned_path_pattern { } {
return {^([\w\d]+)/([\w]+)/([\w\d\-_]+)/([\w\d\-_]+)$} }
return {^([\w\d]+)/([\w]+)/([\w\d\-_]+)/([\w\d\-\._]+)$} }
#