13 lines
144 B
Go
13 lines
144 B
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
func ErrorAndExit(cmd *cobra.Command, err error) {
|
||
|
cmd.PrintErrln(err)
|
||
|
os.Exit(1)
|
||
|
}
|