You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
paramsSuggestion:=strings.Join(paramsList, " and ")
218
219
verb:="requires"
219
220
iflen(requestedTools) >1 {
220
221
verb="require"
221
222
}
222
-
returnfmt.Errorf("docker is not available (cannot connect to Docker daemon). %s %s Docker. Please install and start Docker, or set %s to skip static analysis", toolsList, verb, paramsSuggestion)
223
+
returnfmt.Errorf("docker is not available (cannot connect to Docker daemon). %s %s Docker. Please install and start Docker, or set %s to skip static analysis", strings.Join(requestedTools, " and "), verb, strings.Join(paramsList, " and "))
0 commit comments