We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b79e0c5 commit 164cfabCopy full SHA for 164cfab
pkg/commands/run.go
@@ -47,9 +47,6 @@ func getDefaultDirectoryExcludeHelp() string {
47
return strings.Join(parts, "\n")
48
}
49
50
-const welcomeMessage = "Run this tool in cloud on every github pull " +
51
- "request in https://golangci.com for free (public repos)"
52
-
53
func wh(text string) string {
54
return color.GreenString(text)
55
@@ -274,7 +271,7 @@ func (e *Executor) getConfigForCommandLine() (*config.Config, error) {
274
271
func (e *Executor) initRun() {
275
272
e.runCmd = &cobra.Command{
276
273
Use: "run",
277
- Short: welcomeMessage,
+ Short: "Run the linters",
278
Run: e.executeRun,
279
PreRun: func(_ *cobra.Command, _ []string) {
280
if ok := e.acquireFileLock(); !ok {
0 commit comments