rename executable, add goreleaser

This commit is contained in:
Samuel Lorch 2021-09-09 15:29:34 +02:00
parent ecbb7c88cd
commit 78d3c80b28
7 changed files with 88 additions and 6 deletions

View file

@ -12,7 +12,7 @@ var configureCmd = &cobra.Command{
Use: "configure",
Short: "Configure saves the provided global flags to the Config File",
Long: `Configure saves the provided global flags to the Config File.
this makes using the cli easier as they don't have to be specifed all the time.`,
this makes using the cli easier as they don't have to be specified all the time.`,
RunE: func(cmd *cobra.Command, args []string) error {
if viper.ConfigFileUsed() == "" {

View file

@ -15,7 +15,7 @@ var cfgFile string
// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Use: "go-passbolt-cli",
Use: "passbolt",
Short: "A CLI tool to interact with Passbolt.",
Long: `A CLI tool to interact with Passbolt.`,
}