update command usage formatting for consistency
All checks were successful
build / build (push) Successful in 12s

This commit is contained in:
2026-03-06 12:11:06 +01:00
parent 8cbd1d6399
commit 350577420b
7 changed files with 15 additions and 15 deletions

View File

@@ -9,9 +9,9 @@ export function usageListApps(): string {
return `Usage: sk-az-tools list-apps [--display-name|-n <name>] [--app-id|-i <appId>] [--filter|-f <glob>] [global options]
Options:
-n, --display-name <name> Get app by name
-i, --app-id <appId> Get app by id
-f, --filter <glob> Filter by app display name glob`;
--display-name, -n <name> Get app by name
--app-id, -i <appId> Get app by id
--filter, -f <glob> Filter by app display name glob`;
}
export async function runListAppsCommand(values: CommandValues): Promise<unknown> {