diff --git a/extensions/auth-bearer/pkg/command/root.go b/extensions/auth-bearer/pkg/command/root.go index 4589c17c30..a4f863ec0f 100644 --- a/extensions/auth-bearer/pkg/command/root.go +++ b/extensions/auth-bearer/pkg/command/root.go @@ -29,7 +29,7 @@ func GetCommands(cfg *config.Config) cli.Commands { func Execute(cfg *config.Config) error { app := clihelper.DefaultApp(&cli.App{ Name: "ocis-auth-bearer", - Usage: "Provide apps for oCIS", + Usage: "Provide bearer authentication for oCIS", Commands: GetCommands(cfg), }) diff --git a/extensions/auth-machine/pkg/command/root.go b/extensions/auth-machine/pkg/command/root.go index 9c675862fa..40712fe913 100644 --- a/extensions/auth-machine/pkg/command/root.go +++ b/extensions/auth-machine/pkg/command/root.go @@ -29,7 +29,7 @@ func GetCommands(cfg *config.Config) cli.Commands { func Execute(cfg *config.Config) error { app := clihelper.DefaultApp(&cli.App{ Name: "ocis-auth-machine", - Usage: "Provide apps for oCIS", + Usage: "Provide machine authentication for oCIS", Commands: GetCommands(cfg), })