Skip to content

Commit

Permalink
Fixing merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
Barsik-sus committed May 6, 2024
1 parent 00a0aa2 commit 90bd73c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions module/move/willbe/src/entity/package.rs
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ mod private
let bump_report = version::version_bump( version_bump ).map_err( | e | ( report.clone(), e ) )?;
report.bump = Some( bump_report.clone() );
let git_root = git_things.git_root.clone();
let git = match perform_git_commit( git_things ).map_err( | e | ( report.clone(), e ) )
let git = match perform_git_commit( git_things )
{
Ok( git ) => git,
Err( e ) =>
Expand All @@ -466,7 +466,7 @@ mod private
};
report.add = git.add;
report.commit = git.commit;
report.publish = match cargo::publish( publish ).map_err( | e | ( report.clone(), e ) )
report.publish = match cargo::publish( publish )
{
Ok( publish ) => Some( publish ),
Err( e ) =>
Expand Down
1 change: 1 addition & 0 deletions module/move/willbe/src/tool/graph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,7 @@ pub( crate ) mod private
.path( package.crate_dir().absolute_path().as_ref().to_path_buf() )
.option_temp_path( temp_path.clone() )
.dry( false )
.allow_dirty( true )
.form()
)?;
if publish_need( package, temp_path.clone() ).unwrap()
Expand Down

0 comments on commit 90bd73c

Please sign in to comment.