From 80d7d9d55b903f72f87bf5ad56b478ea76e55b43 Mon Sep 17 00:00:00 2001 From: iTrooz Date: Thu, 14 May 2026 17:38:17 +0200 Subject: [PATCH] fix: add newline when printing dist-status to stdout --- src/commands.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/commands.rs b/src/commands.rs index 5d8a83848..696a564f9 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -757,6 +757,7 @@ pub fn run_command(cmd: Command) -> Result { let status = request_dist_status(srv).context("failed to get dist-status from server")?; serde_json::to_writer(&mut io::stdout(), &status)?; + println!(); } #[cfg(feature = "dist-client")] Command::PackageToolchain(executable, out) => {