From a817d1a25a901f038e8d4f7fb8913c09734acc99 Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Tue, 11 Aug 2020 10:49:33 +0300 Subject: [PATCH] macOS system updates should be treated as success if no updates are present --- src/steps/os/macos.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/steps/os/macos.rs b/src/steps/os/macos.rs index 609b6c44..0217cb53 100644 --- a/src/steps/os/macos.rs +++ b/src/steps/os/macos.rs @@ -93,7 +93,7 @@ pub fn upgrade_macos(ctx: &ExecutionContext) -> Result<()> { println!(); } else { println!("No new software available."); - return Err(SkipStep.into()); + return Ok(()); } }