From 65cf8a52a55e3bb19013e4b27e55a77f66d37506 Mon Sep 17 00:00:00 2001 From: Douglas Camata <159076+douglascamata@users.noreply.github.com> Date: Thu, 14 Mar 2024 00:39:17 +0100 Subject: [PATCH] Ignore deps when removing Python Signed-off-by: Douglas Camata <159076+douglascamata@users.noreply.github.com> --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 176401f..87fb530 100644 --- a/action.yml +++ b/action.yml @@ -95,7 +95,7 @@ runs: HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: "1" run: | brew unlink python@3 || true - brew uninstall python@3 || true + brew uninstall --ignore-dependencies python@3 || true brew install python@3 || true brew link --overwrite --force python@3 shell: bash