25 lines
383 B
Go

package main
import (
"fmt"
"os"
"github.com/golangci/golangci-lint/pkg/commands"
)
var (
// Populated by goreleaser during build
version = "master"
commit = "?"
date = ""
)
func main() {
e := commands.NewExecutor(version, commit, date)
if err := e.Execute(); err != nil {
fmt.Fprintf(os.Stderr, "failed executing command with error %v\n", err)
os.Exit(1)
}
}