macOS system updates should be treated as success if no updates are present

This commit is contained in:
Roey Darwish Dror
2020-08-11 10:49:33 +03:00
parent 49310ad543
commit a817d1a25a

View File

@@ -93,7 +93,7 @@ pub fn upgrade_macos(ctx: &ExecutionContext) -> Result<()> {
println!();
} else {
println!("No new software available.");
return Err(SkipStep.into());
return Ok(());
}
}