dockerscript: '=' is not a special character

Docker-DCO-1.1-Signed-off-by: Solomon Hykes <solomon@docker.com> (github: shykes)
Upstream-commit: 2b81fb8424eb4ba8c815c856075509d686c383a0
Component: engine
This commit is contained in:
Solomon Hykes
2014-04-22 15:50:20 -07:00
parent e69a2729d2
commit 31e10ad323
@@ -14,7 +14,7 @@ func detectIdent(ch rune) bool {
if unicode.IsDigit(ch) {
return true
}
if strings.ContainsRune("_:/+-@%^.!", ch) {
if strings.ContainsRune("_:/+-@%^.!=", ch) {
return true
}
return false