From 46e4202ec46464eea2feaa1ee215e432ff7b5d11 Mon Sep 17 00:00:00 2001 From: Terri Ann Swallow Date: Fri, 26 Apr 2024 10:05:21 -0400 Subject: [PATCH] Update the logout command to follow the VIP-CLI style guide. --- src/bin/vip-logout.ts | 2 +- src/bin/vip.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/vip-logout.ts b/src/bin/vip-logout.ts index d8002f139..beaf575e1 100755 --- a/src/bin/vip-logout.ts +++ b/src/bin/vip-logout.ts @@ -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 () => { diff --git a/src/bin/vip.js b/src/bin/vip.js index 1adf4c0ca..7b19a6b75 100755 --- a/src/bin/vip.js +++ b/src/bin/vip.js @@ -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' )