From a506c67cac15c4d44e1118c643301288e009b36f Mon Sep 17 00:00:00 2001 From: SteveLauC Date: Tue, 19 Dec 2023 17:09:32 +0800 Subject: [PATCH] fix: remove deprecated brew option '--ignore-pinned' (#629) --- src/steps/os/unix.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/steps/os/unix.rs b/src/steps/os/unix.rs index f5658518..976969ce 100644 --- a/src/steps/os/unix.rs +++ b/src/steps/os/unix.rs @@ -283,7 +283,7 @@ pub fn run_brew_formula(ctx: &ExecutionContext, variant: BrewVariant) -> Result< variant.execute(run_type).arg("update").status_checked()?; variant .execute(run_type) - .args(["upgrade", "--ignore-pinned", "--formula"]) + .args(["upgrade", "--formula"]) .status_checked()?; if ctx.config().cleanup() {