blob: 36903ec58d9a9bd73a112601dd21f3f07b98cf8f [file] [log] [blame]
// +build !windows
package shell
// EqualEnvKeys compare two strings and returns true if they are equal.
// On Unix this comparison is case sensitive.
// On Windows this comparison is case insensitive.
func EqualEnvKeys(from, to string) bool {
return from == to
}