Skip to content

Commit cde8fb0

Browse files
committed
Correct unresolveable check configuration
The check was also misconfigured as a warning in check modes where it should be an error, which has been corrected as well.
1 parent 9948ac1 commit cde8fb0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

check/checkconfigurations/checkconfigurations.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -922,8 +922,8 @@ var configurations = []Type{
922922
DisableModes: nil,
923923
EnableModes: []checkmode.Type{checkmode.Default},
924924
InfoModes: nil,
925-
WarningModes: []checkmode.Type{checkmode.LibraryManagerSubmission, checkmode.LibraryManagerIndexed, checkmode.Strict},
926-
ErrorModes: nil,
925+
WarningModes: []checkmode.Type{checkmode.Default},
926+
ErrorModes: []checkmode.Type{checkmode.LibraryManagerSubmission, checkmode.LibraryManagerIndexed, checkmode.Strict},
927927
CheckFunction: checkfunctions.LibraryHasExe,
928928
},
929929
{

0 commit comments

Comments
 (0)