@@ -121,14 +121,14 @@ export default class ExportCommand extends Command {
121121 try {
122122 const { flags } = await this . parse ( ExportCommand ) ;
123123 const exportConfig = await setupExportConfig ( flags ) ;
124-
124+
125125 // Store apiKey in configHandler for session.json (return value not needed)
126126 createLogContext (
127127 this . context ?. info ?. command || 'cm:stacks:export' ,
128128 exportConfig . apiKey ,
129- exportConfig . authenticationMethod ,
129+ exportConfig . authenticationMethod
130130 ) ;
131-
131+
132132 // For log entries, only pass module (other fields are in session.json)
133133 exportConfig . context = { module : '' } ;
134134 //log.info(`Using Cli Version: ${this.context?.cliVersion}`, exportConfig.context);
@@ -143,7 +143,9 @@ export default class ExportCommand extends Command {
143143 if ( ! exportConfig . branches ?. length ) {
144144 writeExportMetaFile ( exportConfig ) ;
145145 }
146- log . success ( `The content of the stack ${ exportConfig . apiKey } has been exported successfully!` ) ;
146+ log . success (
147+ `The content of the stack ${ exportConfig . apiKey } has been exported successfully!` ,
148+ ) ;
147149 log . info ( `The exported content has been stored at '${ exportDir } '.` , exportConfig . context ) ;
148150 log . success ( `The log has been stored at '${ getLogPath ( ) } '.` , exportConfig . context ) ;
149151 } catch ( error ) {
@@ -152,6 +154,7 @@ export default class ExportCommand extends Command {
152154 }
153155 }
154156
157+
155158 // Assign values to exportConfig
156159 private assignExportConfig ( exportConfig : ExportConfig ) : void {
157160 // Note setting host to create cma client
0 commit comments