Fix interactive exit return value

This commit is contained in:
Jordan Wages 2026-06-30 22:15:01 -05:00
commit f00f82d0b8

View file

@ -26,7 +26,7 @@ namespace cs_mic_cli.Functions
{ {
get get
{ {
return FunctionValue.NONE; return FunctionValue.ZERO;
} }
} }
@ -39,7 +39,7 @@ namespace cs_mic_cli.Functions
{ {
this.exitRequestedState.Requested = true; this.exitRequestedState.Requested = true;
return FunctionValue.NONE; return FunctionValue.ZERO;
} }
} }
} }