File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ export default class RunCommand extends GenerativeCommand {
2929
3030 async respond ( query : string , cmd : string , options ?: { refreshCmd : boolean } ) {
3131 if ( options ?. refreshCmd )
32- this . context . stdout . write ( chalk . blue ( `${ cmd } \n\n` ) )
32+ this . context . stdout . write ( chalk . cyan ( `${ cmd } \n\n` ) )
3333
3434 const action = await select < Actions > ( {
3535 message : "" ,
@@ -106,7 +106,7 @@ export default class RunCommand extends GenerativeCommand {
106106 const reviseStream = await reviseCommandStream ( query , cmd , revisePrompt , ci )
107107 spinner . stop ( )
108108
109- const revisedCmd = await this . writeStream ( reviseStream , chunk => chalk . blue ( chunk ) )
109+ const revisedCmd = await this . writeStream ( reviseStream , chunk => chalk . cyan ( chunk ) )
110110
111111 await this . respond ( revisePrompt , revisedCmd , { refreshCmd : false } )
112112 }
@@ -132,7 +132,7 @@ export default class RunCommand extends GenerativeCommand {
132132 const cmdStream = await generateCommandStream ( query , ci )
133133 spinner . stop ( )
134134
135- const cmd = await this . writeStream ( cmdStream , chunk => chalk . blue ( chunk ) )
135+ const cmd = await this . writeStream ( cmdStream , chunk => chalk . cyan ( chunk ) )
136136
137137 this . respond ( query , cmd )
138138 }
You can’t perform that action at this time.
0 commit comments