[minor/bug] fix version format change in agent upgrade regex

This commit is contained in:
Julien Vehent 2014-06-14 16:24:45 -04:00
Родитель 13db4221d1
Коммит ae34903090
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -68,7 +68,7 @@ type Results struct {
}
func (p Parameters) Validate() (err error) {
versionre := regexp.MustCompile(`^[a-z0-9]{7}-[0-9]{12}$`)
versionre := regexp.MustCompile(`^[0-9]{12}_[a-z0-9]{7}$`)
locre := regexp.MustCompile(`^https?://`)
checksumre := regexp.MustCompile(`^[a-zA-Z0-9]{64}$`)
for k, el := range p.Elements {