fish: re-add calls to commandline

fish release 3.5 fixes the "issue" introduced in 3.4:
 - https://github.com/fish-shell/fish-shell/issues/8807
 - https://github.com/fish-shell/fish-shell/releases/tag/3.5.0

This reverts commit 327acf1e2746c5838e5e71817886ebd5b301e667.
This commit is contained in:
Charles Gould 2022-06-16 14:45:02 -04:00
parent a6a38f3136
commit 9543ddb94c

View File

@ -9,8 +9,8 @@ function fbrew --description "Fuzzy homebrew"
end end
if test (count $inst_pkgs) -gt 0 if test (count $inst_pkgs) -gt 0
echo "Installing: $inst_pkgs" commandline -r "brew install $inst_pkgs"
brew install $inst_pkgs commandline -f execute
end end
functions --erase _fbrew_install functions --erase _fbrew_install
@ -91,8 +91,8 @@ function fbrew --description "Fuzzy homebrew"
end end
if test (count $uninst_pkgs_final) -gt 0 if test (count $uninst_pkgs_final) -gt 0
echo "Uninstalling: $uninst_pkgs_final" commandline -r "brew uninstall $uninst_pkgs_final"
#brew uninstall $uninst_pkgs_final commandline -f execute
end end
end end