campaigner/cmd/utils.go

13 lines
164 B
Go
Raw Normal View History

package cmd
import (
"os"
"github.com/spf13/cobra"
)
func ErrorAndExit(cmd *cobra.Command, err error) {
2020-03-01 12:02:52 +00:00
cmd.PrintErrln("ERROR: " + err.Error())
os.Exit(1)
}