Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
axetroy committed Mar 2, 2022
1 parent 7d57e24 commit c706294
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/dvm/dvm.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func CheckEnv() error {
paths := strings.Split(os.Getenv("PATH"), ":")

for _, p := range paths {
if strings.ToLower(p) == strings.ToLower(DenoBinDir) {
if strings.EqualFold(strings.ToLower(p), strings.ToLower(DenoBinDir)) {
return nil
}
}
Expand Down

0 comments on commit c706294

Please sign in to comment.