Browse Source

Make --attach case-insensitive

Docker-DCO-1.1-Signed-off-by: Tibor Vass <teabee89@gmail.com> (github: tiborvass)
Tibor Vass 11 years ago
parent
commit
a713413293
1 changed files with 6 additions and 3 deletions
  1. 6 3
      opts/opts.go

+ 6 - 3
opts/opts.go

@@ -87,10 +87,13 @@ func (opts *ListOpts) Len() int {
 type ValidatorFctType func(val string) (string, error)
 type ValidatorFctType func(val string) (string, error)
 
 
 func ValidateAttach(val string) (string, error) {
 func ValidateAttach(val string) (string, error) {
-	if val != "stdin" && val != "stdout" && val != "stderr" {
-		return val, fmt.Errorf("Unsupported stream name: %s", val)
+	s := strings.ToLower(val)
+	for _, str := range []string{"stdin", "stdout", "stderr"} {
+		if s == str {
+			return s, nil
+		}
 	}
 	}
-	return val, nil
+	return val, fmt.Errorf("valid streams are STDIN, STDOUT and STDERR.")
 }
 }
 
 
 func ValidateLink(val string) (string, error) {
 func ValidateLink(val string) (string, error) {