diff options
author | Aspen Smith <root@gws.fyi> | 2024-07-27T20·00-0400 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-07-27T21·19+0000 |
commit | 4769d047b29f3fbad4767a858f4c0f202f2b33a9 (patch) | |
tree | 9a2d4e9325cb38b8cb53a2d206697ab9217d7bd5 | |
parent | c8f92c6e9fea7c15b4fc0bce6f087d34b45d4710 (diff) |
fix(tvix/cli): Make :q actually quit r/8415
whoops Change-Id: I5f24163c276992c7858b038ae2bb636da75f3f91 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12043 Autosubmit: aspen <root@gws.fyi> Tested-by: BuildkiteCI Reviewed-by: lukegb <lukegb@tvl.fyi>
-rw-r--r-- | tvix/cli/src/repl.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/cli/src/repl.rs b/tvix/cli/src/repl.rs index 6b34b6552da0..601b639154a6 100644 --- a/tvix/cli/src/repl.rs +++ b/tvix/cli/src/repl.rs @@ -178,7 +178,7 @@ impl<'a> Repl<'a> { ReplCommand::Quit => { return CommandResult { output: String::new(), - continue_: true, + continue_: false, }; } ReplCommand::Help => { |