-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update example to not use the app.env alias and to include sample out…
…put.
- Loading branch information
Showing
1 changed file
with
1 addition
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,6 @@ import * as exit from '../lib/cli/exit'; | |
import { trackEvent } from '../lib/tracker'; | ||
|
||
const baseUsage = 'vip whoami'; | ||
const exampleUsage = 'vip @example-app.develop whoami'; | ||
|
||
export async function whoamiCommand() { | ||
const trackingParams: { command: string } = { | ||
|
@@ -45,7 +44,7 @@ export async function whoamiCommand() { | |
void command( { usage: baseUsage } ) | ||
.examples( [ | ||
{ | ||
usage: exampleUsage, | ||
usage: baseUsage + '\n' + ' - Howdy [email protected]!\n' + ' - Your user ID is 1234\n', | ||
description: 'Retrieve details about the current authenticated VIP-CLI user.', | ||
}, | ||
] ) | ||
|