File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ class CommandObjectReproducerGenerate : public CommandObjectParsed {
78
78
interpreter, " reproducer generate" ,
79
79
" Generate reproducer on disk. When the debugger is in capture "
80
80
" mode, this command will output the reproducer to a directory on "
81
- " disk. In replay mode this command in a no-op." ,
81
+ " disk and quit . In replay mode this command in a no-op." ,
82
82
nullptr ) {}
83
83
84
84
~CommandObjectReproducerGenerate () override = default ;
@@ -110,7 +110,9 @@ class CommandObjectReproducerGenerate : public CommandObjectParsed {
110
110
<< " Please have a look at the directory to assess if you're willing to "
111
111
" share the contained information.\n " ;
112
112
113
- result.SetStatus (eReturnStatusSuccessFinishResult);
113
+ m_interpreter.BroadcastEvent (
114
+ CommandInterpreter::eBroadcastBitQuitCommandReceived);
115
+ result.SetStatus (eReturnStatusQuit);
114
116
return result.Succeeded ();
115
117
}
116
118
};
You can’t perform that action at this time.
0 commit comments