From 9577845b3a68f3a46e42d3d014a08cd04e35e728 Mon Sep 17 00:00:00 2001 From: Barsik Date: Mon, 13 May 2024 11:08:45 +0300 Subject: [PATCH] Added a return symbol to the status output --- module/move/willbe/src/action/publish.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/move/willbe/src/action/publish.rs b/module/move/willbe/src/action/publish.rs index 69ce35400d..09fb3e84f8 100644 --- a/module/move/willbe/src/action/publish.rs +++ b/module/move/willbe/src/action/publish.rs @@ -77,13 +77,13 @@ mod private { if let Some( pos ) = actually_published.iter().position( | p | p == &path ) { - write!( f, "✅ {name} {}", version.new_version )?; + writeln!( f, "✅ {name} {}", version.new_version )?; // want to check that only expected packages actually published _ = actually_published.remove( pos ); } else { - write!( f, "❌ {name} {}", version.old_version )?; + writeln!( f, "❌ {name} {}", version.old_version )?; } } if !actually_published.is_empty()