Skip to content

Commit

Permalink
Added a return symbol to the status output
Browse files Browse the repository at this point in the history
  • Loading branch information
Barsik-sus committed May 13, 2024
1 parent a3845a2 commit 9577845
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions module/move/willbe/src/action/publish.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 9577845

Please sign in to comment.