Skip to content

Commit 867ad61

Browse files
committed
make it simpler
1 parent 281fbef commit 867ad61

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pkg/minikube/translate/translate.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,7 @@ func DetermineLocale() {
6565
var locale string
6666
// Allow windows users to overload the same env vars as unix users
6767
if runtime.GOOS == "windows" {
68-
if os.Getenv("LC_ALL") != "" {
69-
locale = os.Getenv("LC_ALL")
70-
}
68+
locale = os.Getenv("LC_ALL")
7169
}
7270
if locale == "" {
7371
var err error

0 commit comments

Comments
 (0)