Minor help text tweaks (#1238)

## Description

Minor help text tweaks

## Type of change

- [x] 🐛 Bugfix
- [x] 🐹 Trivial/Minor
This commit is contained in:
Niraj Tolia 2022-10-19 21:47:45 -07:00 committed by GitHub
parent edb152d9c1
commit 526f5d542d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -29,8 +29,8 @@ var version = "dev"
// `corso <command> [<subcommand>] [<service>] [<flag>...]`
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(),
}

View File

@ -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 },
}

View File

@ -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."},
}