Skip to content

Commit

Permalink
Update the logout command to follow the VIP-CLI style guide.
Browse files Browse the repository at this point in the history
  • Loading branch information
terriann committed Apr 26, 2024
1 parent 5efc20c commit 46e4202
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/bin/vip-logout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ void command( { usage: 'vip logout' } )
.examples( [
{
usage: 'vip logout',
description: 'Logs out current user.',
description: 'Log out the current authenticated VIP-CLI user.',
},
] )
.argv( process.argv, async () => {
Expand Down
2 changes: 1 addition & 1 deletion src/bin/vip.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const customDeployToken = process.env.WPVIP_DEPLOY_TOKEN;
const runCmd = async function () {
const cmd = command();
cmd
.command( 'logout', 'Logout from your current session' )
.command( 'logout', 'Log out the current authenticated VIP-CLI user.' )
.command( 'app', 'List and modify your VIP applications' )
.command( 'backup', 'Generate a backup of an environment.' )
.command( 'cache', 'Manage page cache for your VIP applications' )
Expand Down

0 comments on commit 46e4202

Please sign in to comment.