mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
10 lines
395 B
Fish
10 lines
395 B
Fish
function update --description "Updating Homebrew, Ruby, Python, Node.js, Neovim, and MacOS"
|
|
sudo -v
|
|
brew update && brew outdated && brew upgrade && brew cleanup
|
|
sudo gem update --system && sudo gem update && gem cleanup all
|
|
pip install --upgrade pip
|
|
pip list -o --format columns | cut -d' ' -f1 | xargs -n1 pip install -U
|
|
pnpm update -g
|
|
sudo softwareupdate -i -a
|
|
end
|