Signed-off-by: Daniel Nephin <dnephin@docker.com> Upstream-commit: 4f0d95fa6ee7f865597c03b9e63702cdcb0f7067 Component: engine
10 lines
315 B
Go
10 lines
315 B
Go
package shell // import "github.com/docker/docker/builder/dockerfile/shell"
|
|
|
|
import "strings"
|
|
|
|
// EqualEnvKeys compare two strings and returns true if they are equal. On
|
|
// Windows this comparison is case insensitive.
|
|
func EqualEnvKeys(from, to string) bool {
|
|
return strings.ToUpper(from) == strings.ToUpper(to)
|
|
}
|