mirror of https://github.com/docker/docs.git
dockerscript: '=' is not a special character
Docker-DCO-1.1-Signed-off-by: Solomon Hykes <solomon@docker.com> (github: shykes)
This commit is contained in:
parent
6e0a156d90
commit
2b81fb8424
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue