dotfiles/fish/functions/update.fish

30 lines
489 B
Fish
Raw Normal View History

2022-10-05 21:28:57 +00:00
function update
switch (uname)
case Linux
if type -q yay
yay
end
if type -q flatpak
flatpak update
end
case Darwin
brew upgrade
case '*'
echo "Unsupported OS"
exit 1
end
if type -q gup
gup update
end
2023-02-28 11:17:50 +00:00
if type -q pipx
pipx upgrade-all
end
2022-10-05 21:28:57 +00:00
if type -q cargo
cargo install-update --all
end
end