From 7c6cdf0008d7be778b17c8ba46a9726e31b22902 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Tue, 3 May 2022 16:51:20 +0200 Subject: [PATCH] Apply suggestions from code review update usage --- extensions/auth-bearer/pkg/command/root.go | 2 +- extensions/auth-machine/pkg/command/root.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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), })