summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
Diffstat (limited to 'cli')
-rw-r--r--cli/lib.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/cli/lib.rs b/cli/lib.rs
index 5f98f6f67..a8a314f32 100644
--- a/cli/lib.rs
+++ b/cli/lib.rs
@@ -124,12 +124,15 @@ fn create_main_worker(
}
fn types_command() {
- println!(
+ let types = format!(
"{}\n{}\n{}",
crate::js::DENO_NS_LIB,
crate::js::SHARED_GLOBALS_LIB,
crate::js::WINDOW_LIB
);
+ use std::io::Write;
+ let _r = std::io::stdout().write_all(types.as_bytes());
+ // TODO(ry) Only ignore SIGPIPE. Currently ignoring all errors.
}
fn print_cache_info(state: &GlobalState) {