diff --git a/src/cli/cli.go b/src/cli/cli.go index 3a7140b74..31cecea22 100644 --- a/src/cli/cli.go +++ b/src/cli/cli.go @@ -29,8 +29,8 @@ var version = "dev" // `corso [] [] [...]` var corsoCmd = &cobra.Command{ Use: "corso", - Short: "Protect your Microsoft 365 data.", - Long: `Reliable, secure, and efficient data protection for Microsoft 365.`, + Short: "Free, Secure, Open-Source Backup for M365.", + Long: `Free, Secure, and Open-Source Backup for Microsoft 365.`, RunE: handleCorsoCmd, PersistentPreRunE: config.InitFunc(), } diff --git a/src/cli/cli_test.go b/src/cli/cli_test.go index dc7340fc0..147cf6bfd 100644 --- a/src/cli/cli_test.go +++ b/src/cli/cli_test.go @@ -23,8 +23,8 @@ func (suite *CLISuite) TestAddCommands_noPanics() { test := &cobra.Command{ Use: "test", - Short: "Protect your Microsoft 365 data.", - Long: `Reliable, secure, and efficient data protection for Microsoft 365.`, + Short: "Free, Secure, Open-Source Backup for M365.", + Long: `Free, Secure, and Open-Source Backup for Microsoft 365.`, RunE: func(c *cobra.Command, args []string) error { return nil }, } diff --git a/src/cli/help/env.go b/src/cli/help/env.go index 432e3a40a..d86fb6d59 100644 --- a/src/cli/help/env.go +++ b/src/cli/help/env.go @@ -63,7 +63,7 @@ const ( var ( corsoEVs = []envVar{ - {corso, "CORSO_PASSPHRASE", "Passphrase to protect repository encryption material." + + {corso, "CORSO_PASSPHRASE", "Passphrase to protect encrypted repository contents. " + "It is impossible to use the repository or recover any backups without this key."}, } azureEVs = []envVar{ @@ -72,7 +72,7 @@ var ( {azure, "AZURE_TENANT_ID", "ID for the M365 tenant where the Azure AD application is registered."}, } awsEVs = []envVar{ - {aws, "AWS_ACCESS_KEY_ID", "AWS access key for an IAM user or role for accessing an S3 bucket."}, + {aws, "AWS_ACCESS_KEY_ID", "Access key for an IAM user or role for accessing an S3 bucket."}, {aws, "AWS_SECRET_ACCESS_KEY", "Secret key associated with the access key."}, {aws, "AWS_SESSION_TOKEN", "Session token required when using temporary credentials."}, }