Removing reference to no-longer-existing linter-in-the-cloud (#1553)

This commit is contained in:
iwankgb 2020-12-12 22:59:15 +01:00 committed by GitHub
parent b79e0c5adf
commit 164cfab820
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,9 +47,6 @@ func getDefaultDirectoryExcludeHelp() string {
return strings.Join(parts, "\n")
}
const welcomeMessage = "Run this tool in cloud on every github pull " +
"request in https://golangci.com for free (public repos)"
func wh(text string) string {
return color.GreenString(text)
}
@ -274,7 +271,7 @@ func (e *Executor) getConfigForCommandLine() (*config.Config, error) {
func (e *Executor) initRun() {
e.runCmd = &cobra.Command{
Use: "run",
Short: welcomeMessage,
Short: "Run the linters",
Run: e.executeRun,
PreRun: func(_ *cobra.Command, _ []string) {
if ok := e.acquireFileLock(); !ok {