diff --git a/cli/deno_error.rs b/cli/deno_error.rs index 544a411bac..41b0d4a947 100644 --- a/cli/deno_error.rs +++ b/cli/deno_error.rs @@ -192,6 +192,7 @@ impl GetErrorKind for ReadlineError { match self { Io(err) => GetErrorKind::kind(err), Eof => ErrorKind::UnexpectedEof, + Interrupted => ErrorKind::Interrupted, #[cfg(unix)] Errno(err) => err.kind(), _ => unimplemented!(),