Fixing regex

This commit is contained in:
Frederick F. Kautz IV 2015-01-21 15:28:39 -08:00
parent 856781b2a4
commit 53a8536984

View File

@ -55,6 +55,6 @@ func IsValidBucket(bucket string) bool {
if match, _ := regexp.MatchString("\\.\\.", bucket); match == true {
return false
}
match, _ := regexp.MatchString("[a-zA-Z0-9\\.\\-]", bucket)
match, _ := regexp.MatchString("^[a-zA-Z][a-zA-Z0-9\\.\\-]+[a-zA-Z0-9]$", bucket)
return match
}