1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

Allow stderr

This commit is contained in:
Divy Srivastava 2024-11-12 17:16:54 +05:30
parent 00241e9ea8
commit f22e5ebc5a

View file

@ -911,6 +911,7 @@ async fn perform_publish(
publish_order_graph.finish_package(&package_name);
}
Err(err) => {
#[allow(clippy::print_stderr)]
eprintln!("{}: {}", colors::red("Error publishing"), err);
}
}