Skip to content

Commit 6c51f8b

Browse files
committed
Fixed linter warning
internal/cli/lib/check_deps.go:117:2: QF1003: could use tagged switch on dep.VersionInstalled (staticcheck) if dep.VersionInstalled == "" { ^
1 parent a355e2e commit 6c51f8b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

internal/cli/lib/check_deps.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,14 @@ func outputDep(dep *result.LibraryDependencyStatus) string {
114114
green := color.New(color.FgGreen)
115115
red := color.New(color.FgRed)
116116
yellow := color.New(color.FgYellow)
117-
if dep.VersionInstalled == "" {
117+
switch dep.VersionInstalled {
118+
case "":
118119
res += i18n.Tr("%s must be installed.",
119120
red.Sprintf("✕ %s %s", dep.Name, dep.VersionRequired))
120-
} else if dep.VersionInstalled == dep.VersionRequired {
121+
case dep.VersionRequired:
121122
res += i18n.Tr("%s is already installed.",
122123
green.Sprintf("✓ %s %s", dep.Name, dep.VersionRequired))
123-
} else {
124+
default:
124125
res += i18n.Tr("%[1]s is required but %[2]s is currently installed.",
125126
yellow.Sprintf("✕ %s %s", dep.Name, dep.VersionRequired),
126127
yellow.Sprintf("%s", dep.VersionInstalled))

0 commit comments

Comments
 (0)