From b097f96a9c95e612d1bf0c7474e993c6a29fee10 Mon Sep 17 00:00:00 2001 From: Charles Gould Date: Mon, 3 Aug 2020 23:53:04 -0400 Subject: [PATCH] fish: make homebrew functions execute the commandline --- fish/functions/fbrew.fish | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fish/functions/fbrew.fish b/fish/functions/fbrew.fish index 89de2af..e7dc629 100644 --- a/fish/functions/fbrew.fish +++ b/fish/functions/fbrew.fish @@ -10,6 +10,7 @@ function fbrew --description "Fuzzy homebrew" if test (count $inst_pkgs) -gt 0 commandline -r "brew install $inst_pkgs" + commandline -f execute end functions --erase _fbrew_install @@ -91,6 +92,7 @@ function fbrew --description "Fuzzy homebrew" if test (count $uninst_pkgs_final) -gt 0 commandline -r "brew uninstall $uninst_pkgs_final" + commandline -f execute end end