forked from kemitix/git-next
chore: don't log success
This commit is contained in:
parent
ee9cc53540
commit
223dd426c6
1 changed files with 2 additions and 7 deletions
|
@ -184,18 +184,13 @@ pub async fn advance_main(
|
|||
git: Git,
|
||||
) {
|
||||
info!("Advancing main to next");
|
||||
match git.reset(
|
||||
if let Err(err) = git.reset(
|
||||
&repo_config.branches().main(),
|
||||
next.into(),
|
||||
ResetForce::None,
|
||||
&repo_details,
|
||||
) {
|
||||
Ok(_) => {
|
||||
info!("Success");
|
||||
}
|
||||
Err(err) => {
|
||||
warn!(?err, "Failed")
|
||||
}
|
||||
warn!(?err, "Failed")
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue