Stop checking the return value of msupdate in macOS (fix #644)
This commit is contained in:
@@ -15,8 +15,10 @@ pub fn run_msupdate(ctx: &ExecutionContext) -> Result<()> {
|
|||||||
.require()?;
|
.require()?;
|
||||||
print_separator("Microsoft AutoUpdate");
|
print_separator("Microsoft AutoUpdate");
|
||||||
|
|
||||||
ctx.run_type().execute(msupdate).arg("--list").check_run()?;
|
ctx.run_type().execute(msupdate).arg("--list").spawn()?.wait()?;
|
||||||
ctx.run_type().execute(msupdate).arg("--install").check_run()
|
ctx.run_type().execute(msupdate).arg("--install").spawn()?.wait()?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn run_macports(ctx: &ExecutionContext) -> Result<()> {
|
pub fn run_macports(ctx: &ExecutionContext) -> Result<()> {
|
||||||
|
|||||||
Reference in New Issue
Block a user