File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import { Command } from '@cliffy/command';
44import { listEnvironments , setEnvironment } from '../lib/config.ts' ;
55import { validateCredentials } from '../lib/mux.ts' ;
66import { inputPrompt , secretPrompt } from '../lib/prompt.ts' ;
7+ import { getConfigPath } from '../lib/xdg.ts' ;
78
89export interface EnvVars {
910 MUX_TOKEN_ID ?: string ;
@@ -132,7 +133,9 @@ export const loginCommand = new Command()
132133 environmentId : validation . environmentId ,
133134 } ) ;
134135
135- console . log ( `✅ Credentials saved for environment: ${ envName } ` ) ;
136+ console . log (
137+ `✅ Credentials saved to ${ getConfigPath ( ) } for environment: ${ envName } ` ,
138+ ) ;
136139
137140 if ( existingEnvs . length === 0 ) {
138141 console . log ( `✅ Set as default environment` ) ;
You can’t perform that action at this time.
0 commit comments