Skip to content

Commit

Permalink
Merge pull request #1324 from Barsik-sus/willbe-publish-fix-output
Browse files Browse the repository at this point in the history
READY: (willbe): Added a return symbol to the status output
  • Loading branch information
Wandalen authored May 13, 2024
2 parents 17e960b + 9577845 commit 317316a
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 317316a

Please sign in to comment.