From fdbc4f92809e08258b2bdec1bed2ac054bba4835 Mon Sep 17 00:00:00 2001 From: Charles Gould Date: Fri, 11 Nov 2022 11:49:45 -0500 Subject: [PATCH] brew: prevent deletion of python@3.11 --- fish/functions/fbrew.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fish/functions/fbrew.fish b/fish/functions/fbrew.fish index 2679583..24c1718 100644 --- a/fish/functions/fbrew.fish +++ b/fish/functions/fbrew.fish @@ -21,7 +21,7 @@ function fbrew --description "Fuzzy homebrew" set --local uninst_pkgs $argv # Don't uninstall these packages - set --local locked_pkgs node python python@3.8 python@3.9 python@3.10 + set --local locked_pkgs node python python@3.8 python@3.9 python@3.10 python@3.11 if test (count $uninst_pkgs) -eq 0 set uninst_pkgs (brew leaves | eval "fzf --multi --prompt='[brew:uninstall] '")