Merge pull request #3937 from mitchellh/pr-3281

add dot to build name regexp
pull/3408/merge
Matthew Hooker 10 years ago committed by GitHub
commit 02ecece3e3

@ -18,7 +18,7 @@ import (
const archiveTemplateEntry = ".packer-template"
var (
reName = regexp.MustCompile("^[a-zA-Z0-9-_/]+$")
reName = regexp.MustCompile("^[a-zA-Z0-9-_./]+$")
errInvalidName = fmt.Errorf("Your build name can only contain these characters: %s", reName.String())
)

Loading…
Cancel
Save