27 lines
428 B
Fish
27 lines
428 B
Fish
function updt_languages \
|
|
--description "Update language toolchains"
|
|
|
|
if command -q rustup
|
|
rustup update
|
|
end
|
|
|
|
if command -q pipx
|
|
pipx upgrade-all
|
|
end
|
|
|
|
if command -q npm
|
|
npm update --location=global
|
|
end
|
|
|
|
if command -q pnpm
|
|
pnpm update --global
|
|
end
|
|
|
|
if command -q yarn
|
|
yarn global upgrade
|
|
end
|
|
|
|
if command -q gem
|
|
gem update
|
|
end
|
|
end |