File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " replexica " : patch
3+ ---
4+
5+ rename logout cli flag
Original file line number Diff line number Diff line change @@ -13,13 +13,13 @@ export default new Command()
1313 . command ( "auth" )
1414 . description ( "Authenticate with Replexica API" )
1515 . helpOption ( "-h, --help" , "Show help" )
16- . option ( "-d, --delete " , "Delete existing authentication" )
17- . option ( "-l, - -login" , "Authenticate with Replexica API" )
16+ . option ( "--logout " , "Delete existing authentication" )
17+ . option ( "--login" , "Authenticate with Replexica API" )
1818 . action ( async ( options ) => {
1919 const env = getEnv ( ) ;
2020 let config = await loadSettings ( ) ;
2121
22- if ( options . delete ) {
22+ if ( options . logout ) {
2323 await logout ( ) ;
2424 }
2525 if ( options . login ) {
You can’t perform that action at this time.
0 commit comments